Change by Terry J. Reedy :
--
nosy: +vstinner
___
Python tracker
<https://bugs.python.org/issue39484>
___
___
Python-bugs-list mailing list
Unsubscribe:
Terry J. Reedy added the comment:
Sorry, I was thinking of something else when I closed this. What you want is a
new -x option, for some 'x'. The following would help, especially as there is
no one who specifically maintains pydoc.
a) a specific proposal or set of proposals
Terry J. Reedy added the comment:
Nick, can you comment on this and review the revised PR?
--
nosy: +ncoghlan
versions: -Python 2.7
___
Python tracker
<https://bugs.python.org/issue34
Change by Terry J. Reedy :
--
type: -> enhancement
versions: +Python 3.9
___
Python tracker
<https://bugs.python.org/issue39127>
___
___
Python-bugs-list mai
Terry J. Reedy added the comment:
Stefen, do you know anything about this? There is no coredev expert for xmlrpc.
--
nosy: +scode, terry.reedy
title: expat parser not xml 1.1 (breaks xmlrpclib) - still -> expat parser not
xml 1.1 compliant (breaks xmlrpclib) - st
Terry J. Reedy added the comment:
I do not see the within-version slowdown on fresh Windows 10, Pro 64, 32-bit
debug builds.
3.7: 26.4, 27.0
3.8: 26.8, 27.1 # installed normal 64 bit is 7.4, 7.4
3.9: 30.2, 30.1 # 10% slower
--
components: +Windows
nosy: +paul.moore, steve.dower
Change by Terry J. Reedy :
--
nosy: +ghaering
___
Python tracker
<https://bugs.python.org/issue39523>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Terry J. Reedy :
--
nosy: +davin, pitrou
___
Python tracker
<https://bugs.python.org/issue39531>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Terry J. Reedy :
--
versions: -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue39574>
___
___
Python-bugs-list mailin
Terry J. Reedy added the comment:
Serhiy, do you know anything about the tkinter.font.families() tuple having
duplicate names? It strikes me as an OS or tk error.
On Windows, the tuple has groups of related names with a base name, such as
'Segoe UI' both alone and with suffixe
Change by Terry J. Reedy :
--
pull_requests: +17823
pull_request: https://github.com/python/cpython/pull/18449
___
Python tracker
<https://bugs.python.org/issue39
Terry J. Reedy added the comment:
New changeset 96ce22706735779cf8cc46eaaa5ac61359364b5a by Terry Jan Reedy in
branch 'master':
bpo-39600: Adjust code, add idlelib/NEWS item (GH-18449)
https://github.com/python/cpython/commit/96ce22706735779cf8cc46eaaa5ac6
Terry J. Reedy added the comment:
font.names() lists 'symbolic' family names guaranteed to exist.
'TkDefaultFont' is the default Text widget font on a particular OS. IDLE
replaces that with 'TkFixedFont', which is translated to the actual family name
on ea
Terry J. Reedy added the comment:
Cheryl, it appears that only 'weight' words are deleted. For a given family,
Tk only has a (user) settable 'bold', so other weight options must be 'baked
in' to the family. Perhaps X11 allows more weight settings within a fami
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Terry J. Reedy added the comment:
New changeset ffda25f6b825f3dee493b6f0746266a4dd6989f0 by Cheryl Sabella in
branch 'master':
bpo-39663: IDLE: Add additional tests for pyparse (GH-18536)
https://github.com/python/cpython/commit/ffda25f6b825f3dee493b6f0746266
New submission from Terry J. Reedy :
macOS test failed twice for PR-18536, for reasons unrelated to the IDLE test
additions. Two pages gave completely different reasons.
https://github.com/python/cpython/pull/18536/checks?check_run_id=451798955
clang: warning: -framework Tk: 'linker
Terry J. Reedy added the comment:
Thank you for tracking this down. The comment was on #32989.
--
nosy: -miss-islington
versions: +Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue39
Terry J. Reedy added the comment:
Same failures for pr-18539.
--
nosy: +vstinner
___
Python tracker
<https://bugs.python.org/issue39669>
___
___
Python-bug
Terry J. Reedy added the comment:
What OS, what Python version, what tk version? For the latter, start IDLE and
go to Help - About IDLE.
--
nosy: +terry.reedy
___
Python tracker
<https://bugs.python.org/issue39
Terry J. Reedy added the comment:
==
ERROR: test_no_such_executable (test.test_posix.TestPosixSpawnP)
--
Traceback (most recent call last):
File "
Terry J. Reedy added the comment:
The recently reinstated long 30+ line reports are useless nuisance for me. I
delete them. A single line line to a report, without flagging, would be OK.
--
nosy: +terry.reedy
___
Python tracker
<ht
Terry J. Reedy added the comment:
If I understand, input() in one thread blocks print() in another thread.
This sound like a new issue for this tracker, and possibly a bug in IDLE's
implementation of std streams through a socket, but I need to see your code.
Please try attaching it
Change by Terry J. Reedy :
--
keywords: +newcomer friendly
stage: -> needs patch
versions: +Python 3.7, Python 3.8, Python 3.9
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
Summary: With IDLE running normally, with 2 processes, "input('prompt')" in the
main thread blocks execution of "print('whatever')" in a separate thread.
(Verified on Windows with 3.9 and macOS with 3.8.) The user
Terry J. Reedy added the comment:
I found a stackoverflow question (and my then answer) about the same issue:
https://stackoverflow.com/questions/50108354/python-idle-running-code-differently-than-other-ides
Although the code posted does not run, it gives a very legitimate use case
( is the
Terry J. Reedy added the comment:
I verified that problem continues on Windows with 3.8 and 3.9 alpha (with tk
8.6.9 -- might get updated later) and that fix posted by Matthew works. I am
testing because of #39636.
--
nosy: +terry.reedy
versions: +Python 3.8, Python 3.9
Terry J. Reedy added the comment:
When I ran the initial test code of #36468, everything was black on white.
When I added Matthew Barnett's fix, both text and background were changed.
Until we get test code and version information that we can run and verify a
problem with the fix,
Terry J. Reedy added the comment:
I am sure that the behavior you observe is correct. The default button click
handler must check the state before calling the command function, while I
presume that your printBtn_onclick function (not shown) does not. If Serhiy
disagrees, he can reopen
Terry J. Reedy added the comment:
My understanding that Python is compiled and installed and that the failure was
during a later test.
In repository master (3.9) the line is 1549 instead of 1529. The test function
code is
def test_no_such_executable(self):
no_such_executable
Terry J. Reedy added the comment:
Unlike the 3.9 code and doc change in #39411, this doc change applies since
3.7. It does not conflict with #39411.
--
versions: +Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue39
Terry J. Reedy added the comment:
New changeset aea045adb8c90394264908670cbc495c5a41b65e by Hakan Çelik in branch
'master':
bpo-39654: Update pyclbr doc to reflect additional information returned
(GH-18528)
https://github.com/python/cpython/commit/aea045adb8c90394264908670cbc49
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Terry J. Reedy added the comment:
New changeset 4015d1cda3cdba869103779eb6ff32ad798ff885 by Daniel Hahler in
branch 'master':
bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry
(GH-18531)
https://github.com/python/cpyt
Terry J. Reedy added the comment:
Some IDLE users really want a horizontal scrollbar (for the editor), and even
consider its absence to be a reason to not use it.
Stackoverflow 2012:
https://stackoverflow.com/questions/10301071/is-there-a-horizontal-scroll-bar-in-pythons-idle
Reddit 2020
New submission from Terry J. Reedy :
Tweak the code context widget so people can select context lines and copy to
clipboard (perhaps to document nested code) without having to do the copy while
still holding down the left mouse button. Button-down, move, and release (to
select) is not
Change by Terry J. Reedy :
--
keywords: +patch
pull_requests: +18042
stage: commit review -> patch review
pull_request: https://github.com/python/cpython/pull/18683
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
New changeset c705fd1e89ccb8f6d414ec817b4616546147d877 by Terry Jan Reedy in
branch 'master':
bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)
https://github.com/python/cpython/commit/c705fd1e89ccb8f6d414ec817b4616
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Terry J. Reedy added the comment:
I decided that the alternate addition in #13557 is enough.
--
resolution: -> out of date
stage: patch review -> resolved
status: open -> closed
versions: -Python 2.7
___
Python tracker
<https://bug
Change by Terry J. Reedy :
--
pull_requests: +18049
pull_request: https://github.com/python/cpython/pull/18690
___
Python tracker
<https://bugs.python.org/issue13
Terry J. Reedy added the comment:
PR-18690 makes the approved change of 'string' to 'specification'. After
merging, I will re-review the other changes in i13790b.diff and possibly make
another PR for review.
--
versions: +Python 3.9 -Py
Terry J. Reedy added the comment:
New changeset 916895f93905f8b8dad677cceff501833f5a633a by Terry Jan Reedy in
branch 'master':
bpo-13790: Change 'string' to 'specification' in format doc (GH-18690)
https://github.com/python/cpython/commit/916895f939
Terry J. Reedy added the comment:
While I have no specific opinion on tarfile, I strongly disagree with a blanket
prohibition on 'from None'. Its proper use is to maintain a defined API and
hide irrelevant implementation details. Realistic toy example:
def f(x, y):
"Ret
Terry J. Reedy added the comment:
I verified the additions in token.py. Thanks for the report.
--
assignee: docs@python -> terry.reedy
nosy: +terry.reedy
type: -> behavior
versions: +Python 3.8, Python 3.9
___
Python tracker
Terry J. Reedy added the comment:
New changeset c2f7eb254bee036afc8a71437ec6aac82f06a1ce by Shantanu in branch
'master':
bpo-39718: add TYPE_IGNORE, COLONEQUAL to py38 changes in token (GH-18598)
https://github.com/python/cpython/commit/c2f7eb254bee036afc8a71437ec6aa
Terry J. Reedy added the comment:
Would it generaly work better if 'from None' only suppressed the previous
exception? That is the only one that the code writer knows about.
--
nosy: +terry.reedy
___
Python tracker
<https://bu
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Terry J. Reedy :
--
nosy: +Rhodri James, ethan.furman
___
Python tracker
<https://bugs.python.org/issue39727>
___
___
Python-bugs-list mailin
Change by Terry J. Reedy :
--
nosy: +christian.heimes
___
Python tracker
<https://bugs.python.org/issue39729>
___
___
Python-bugs-list mailing list
Unsubscribe:
Terry J. Reedy added the comment:
This does not look like a bug in cpython; if is it not, it should be closed.
Please ask for help on python-list or another forum that covers installation
issues. Or maybe look for a pip user list.
--
nosy: +terry.reedy
Change by Terry J. Reedy :
--
nosy: +larry
___
Python tracker
<https://bugs.python.org/issue39742>
___
___
Python-bugs-list mailing list
Unsubscribe:
Terry J. Reedy added the comment:
Antoine, Although the text may have preceded your OSError reorganization, you
were the last to touch this entry. Is is correct, or does it need change?
Revision: f55011f8b63d3b046c1ec580312bc52ca47d721b
Author: Antoine Pitrou
Date: 10/12/2011 12:57:23 PM
Terry J. Reedy added the comment:
The autoresponse seems not to be in any .rst, .htm, .html, or .txt file in the
cpython/python repository, so this tracker is not the right place for this
issue. I have sent a change request to both h...@python.org and
webmas...@python.org.
--
nosy
Terry J. Reedy added the comment:
For beginners, 'is this a Python bug' questions should usually be directed
elsewhere for initial review.
https://docs.python.org/3/reference/compound_stmts.html#the-try-statement
"When an exception has been assigned using as target, it is cle
Terry J. Reedy added the comment:
-1 also, not worth the cost, so I would not bother with python-ideas.
--
nosy: +terry.reedy
status: pending -> open
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
'pending' is a worthless state because any subsequent post changes back to
'open'.
--
stage: -> resolved
status: open -> closed
type: -> enhancement
___
Python tracker
<ht
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Terry J. Reedy added the comment:
Not surprisingly, I agree with Steven that enhancing IDLE may be a better use
of core developer time. It and Tkinter (and turtle) are options for the
Windows and macOS (and some non-PSF) installers and easily installed on Linux.
IDLE has most of the
Terry J. Reedy added the comment:
> why a C extension apart and not a patch to `readline`?
Search "python ctypes vs c extension". Multiple SO answers. I believe speed
and language competancy are big factors. I don't think and stdlib m
Terry J. Reedy added the comment:
Adding functions to builtins (2 of Marco's 8 #38747 ideas) should be separate
from patching the repl code. I agree that the latter should not be done
piecemeal. I previous wrote that we need a pydev REPL enhancement policy
discussion *first
Terry J. Reedy added the comment:
This is almost certainly a tcl/tk/tkinter on Catalina issue, not an IDLE issue.
Screenshots are missing headlight colors, and that should be impossible to
cause from Python. In standard python, try
>>> import tkinter as tk
>>> r = t
Terry J. Reedy added the comment:
I just upgraded to 10.14.6 and 3.8.2 and python/IDLE is normal. (I have so far
closed the every login 'upgrade to Catalina' box because of reports like this.)
Ned, is current 8.6.10 any better
Terry J. Reedy added the comment:
The standard and expected behavior is that pasting *without* a selection
inserts, pasting *with* a selection replaces. Pasting with key, Edit menu, or
context menu should be the same. This is what I see and what I *think* you are
describing. If so
Terry J. Reedy added the comment:
The black one from 2.42 shows that the disfunction in your system is not in
tkinter app and is likely upstream from that (the relationship between tk and
mac).
--
___
Python tracker
<https://bugs.python.
Terry J. Reedy added the comment:
This is much clearer. To expand on what I said before, inserting *anything*,
such as by hitting a key, replaces a selection. I verified that this is normal
behavior, at least on Windows, with Notepad, Notepad++, and this Firefox entry
box I am typing in
Terry J. Reedy added the comment:
I changed the title to reflect the intended user-visible behavior, which was
always the real issue. The original title proposed a solution that would not
work. The revised title gave an alternate solution that should not work.
The discrepancy between
Terry J. Reedy added the comment:
selection_clear only partially clears a selection. That it does something is
proven by selection_clear.py. It disables selection_get. But run the file in
IDLE and when it finishes, click the tk window, select a line, click Shell, and
manually repeat the
Change by Terry J. Reedy :
--
keywords: +patch
pull_requests: +18157
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/18801
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
I am expanding this issue to include the part of #27115 that the PR will fix.
(I will also change the scope of the latter).
--
stage: patch review -> needs patch
title: IDLE: Goto should remove any selection -> IDLE: Goto should remove
sel
New submission from Terry J. Reedy :
In text editors, right click commonly brings up a context menu, often including
Cut, Copy, Paste, and Delete, with inapplicable entries grayed out. There are
at least 2 'standard' behaviors (at least on Windows) with respect to the
cursor and
Terry J. Reedy added the comment:
Spinoff from #39852. At least the selection clear code added there should be
pulled into a module level function and tested.
--
___
Python tracker
<https://bugs.python.org/issue39
Terry J. Reedy added the comment:
Agreed about right clicks. See new issue #39885.
--
___
Python tracker
<https://bugs.python.org/issue39852>
___
___
Python-bug
Terry J. Reedy added the comment:
(Mozilla) Thunderbird, unlike (Mozilla) Firefox, has move/clear right clicks.
--
title: IDLE right click should unselect -> IDLE right click should clear any
selection
___
Python tracker
<https://bugs.pyth
Terry J. Reedy added the comment:
I believe the following is true: when only one selection is allowed, the cursor
is normally at one end or the other, and any cursor movement either clear the
selection or changes its range.
--
___
Python tracker
Change by Terry J. Reedy :
--
versions: -Python 3.6
___
Python tracker
<https://bugs.python.org/issue39792>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Terry J. Reedy :
--
nosy: +serhiy.storchaka
___
Python tracker
<https://bugs.python.org/issue39827>
___
___
Python-bugs-list mailing list
Unsubscribe:
Terry J. Reedy added the comment:
The only specification is that len(ob) calls ob.__len__ and that ob.__len__
should return an 'integer >= 0'. (Adding side effects goes beyond that spec.)
I agree that a detectable internal in list is not a bug. Unless there is a
realisti
Change by Terry J. Reedy :
--
components: +macOS
nosy: +ned.deily, ronaldoussoren
___
Python tracker
<https://bugs.python.org/issue39832>
___
___
Python-bug
Terry J. Reedy added the comment:
b.p.o is for the cpython repository, which includes the English docs.
Translations are in separate repositories (like python-docs-fr) with their own
trackers, with issues handled by the corresponding translators.
--
nosy: +terry.reedy
Terry J. Reedy added the comment:
New changeset 2522db11df102be3baf25ce9e816ebe8ffdb7fcc by Terry Jan Reedy in
branch 'master':
bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801)
https://github.com/python/cpython/commit/2522db11df102be3baf2
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Terry J. Reedy :
--
keywords: +patch
pull_requests: +18216
stage: test needed -> patch review
pull_request: https://github.com/python/cpython/pull/18859
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
Since PR-18801 fixed the status issue, I am returning this to the box
replacement issue.
--
title: IDLE goto should always update status bar line & column -> IDLE goto
should use query.Query subclass
___
Terry J. Reedy added the comment:
New changeset 4ca060d8ad7c6df1fd4df30f9a14f6aa35380c09 by Terry Jan Reedy in
branch 'master':
bpo-39885: IDLE context menu clears selection (#18859)
https://github.com/python/cpython/commit/4ca060d8ad7c6df1fd4df30f9a14f6
Terry J. Reedy added the comment:
The related issue is #39852. Since its PR-18801 fixed the status issue, I am
returning this to the box replacement issue.
--
___
Python tracker
<https://bugs.python.org/issue27
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Terry J. Reedy :
--
keywords: +patch
pull_requests: +18226
stage: test needed -> patch review
pull_request: https://github.com/python/cpython/pull/18868
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
New changeset e53a3932cb01683b0fa8a7448ca25a2e658c39e6 by Terry Jan Reedy in
branch 'master':
bpo-27115: Move IDLE Query error blanking (GH-18868)
https://github.com/python/cpython/commit/e53a3932cb01683b0fa8a7448ca25a
Terry J. Reedy added the comment:
Is it the temporal ambiguity (fixed by adding 'now', which is in the blurbs) or
the descriptive versus command style (as with 'Returns' versus 'Return') that
you do not like? If the latter, the devguide could use augmentation
Change by Terry J. Reedy :
--
dependencies: -Finish IDLE Query dialog appearance and behavior.
stage: patch review -> test needed
___
Python tracker
<https://bugs.python.org/issu
Change by Terry J. Reedy :
--
pull_requests: +18229
stage: test needed -> patch review
pull_request: https://github.com/python/cpython/pull/18871
___
Python tracker
<https://bugs.python.org/issu
Terry J. Reedy added the comment:
https://github.com/python/devguide/issues/577
--
___
Python tracker
<https://bugs.python.org/issue39852>
___
___
Python-bug
Terry J. Reedy added the comment:
New changeset 363fab83b8a0e6d924c7a7c577feec6a2812bb8c by Terry Jan Reedy in
branch 'master':
bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)
https://github.com/python/cpython/commit/363fab83b8a0e6d924c7a7c577feec
Change by Terry J. Reedy :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Terry J. Reedy added the comment:
https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm now displays the 8.6.10 pages,
so the tcl folk consider this to be the current stable release.
Zach or Steve or whowever can handle this for Windows, please upgrade pcbuild
and whatever else 'soon'
Terry J. Reedy added the comment:
See also #38775 about a configuration option. The two proposals need to be
coordinated.
--
___
Python tracker
<https://bugs.python.org/issue22
Terry J. Reedy added the comment:
Ned> we should be able to catch an exception when IDLE tries to set the working
directory to Documents.
If IDLE did that, then I would consider the silent exit an IDLE bug. However,
IDLE only calls os.chdir, when running a user script, in the user proc
Change by Terry J. Reedy :
--
title: IDLE.app fails to launch on macOS 10.15 if denied access to user's
Document Folder -> IDLE.app fails on macOS 10.15 if denied access to Documents
___
Python tracker
<https://bugs.python.org
Terry J. Reedy added the comment:
idlemain.py should be documented within idlelib* (I will do that, README.txt
and maybe macosx.py). Currently, the chdir is only part of idle.app, not idle
on Mac, because it does not happen when starting IDLE in Terminal. This is
confusing. As near as I
3001 - 3100 of 13134 matches
Mail list logo