[issue39484] time_ns() and time() cannot be compared on windows

2020-01-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue39484> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39391] Pydoc: add option to remove run-specific ids (addresses)

2020-02-01 Thread Terry J. Reedy
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

[issue34788] ipaddress module fails on rfc4007 scoped IPv6 addresses

2020-02-04 Thread Terry J. Reedy
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

[issue39127] _Py_HashPointer's void * argument should be const

2020-02-05 Thread Terry J. Reedy
Change by Terry J. Reedy : -- type: -> enhancement versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39127> ___ ___ Python-bugs-list mai

[issue39512] expat parser not xml 1.1 compliant (breaks xmlrpclib) - still

2020-02-09 Thread Terry J. Reedy
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

[issue39521] reversed(mylist) much slower on Python 3.8 32-bit for Windows

2020-02-09 Thread Terry J. Reedy
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

[issue39523] Unnecessary variable assignment and initial loop check in pysqlite_cursor_executescript

2020-02-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +ghaering ___ Python tracker <https://bugs.python.org/issue39523> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39531] Memory Leak in multiprocessing.Pool()

2020-02-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue39531> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39574] str.__doc__ is misleading

2020-02-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue39574> ___ ___ Python-bugs-list mailin

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
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

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +17823 pull_request: https://github.com/python/cpython/pull/18449 ___ Python tracker <https://bugs.python.org/issue39

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
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

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
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

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
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

[issue39600] idle_test: test_fontlist_key() fails if two font families have the same name

2020-02-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39663] IDLE: Add additional tests for pyparse

2020-02-17 Thread Terry J. Reedy
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

[issue39669] macOS test failures

2020-02-17 Thread Terry J. Reedy
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&#

[issue39663] IDLE: Add additional tests for pyparse

2020-02-17 Thread Terry J. Reedy
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

[issue39669] macOS test failures

2020-02-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Same failures for pr-18539. -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue39669> ___ ___ Python-bug

[issue39636] Can't change Treeview row color in Tkinter

2020-02-21 Thread Terry J. Reedy
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

[issue39653] test_posix fails during make test

2020-02-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: == ERROR: test_no_such_executable (test.test_posix.TestPosixSpawnP) -- Traceback (most recent call last): File "

[issue39704] Disable code coverage

2020-02-21 Thread Terry J. Reedy
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

[issue39724] IDLE threading + stdout/stdin observed blocking behavior

2020-02-22 Thread Terry J. Reedy
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

[issue39710] "will be returned as unicode" reminiscent from Python 2

2020-02-22 Thread Terry J. Reedy
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

[issue39724] IDLE threading + stdout/stdin observed blocking behavior

2020-02-22 Thread Terry J. Reedy
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

[issue39724] IDLE threading + stdout/stdin observed blocking behavior

2020-02-23 Thread Terry J. Reedy
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

[issue36468] Treeview: wrong color change

2020-02-23 Thread Terry J. Reedy
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

[issue39636] Can't change Treeview row color in Tkinter

2020-02-23 Thread Terry J. Reedy
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,

[issue39642] Behaviour of disabled widgets: widget.bind(func) -vs- w = widget(command=func)

2020-02-23 Thread Terry J. Reedy
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

[issue39653] test_posix fails during make test

2020-02-23 Thread Terry J. Reedy
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

[issue39654] pyclbr: remove old references to class browser & add explain readmodule

2020-02-23 Thread Terry J. Reedy
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

[issue39654] pyclbr: remove old references to class browser & add explain readmodule

2020-02-23 Thread Terry J. Reedy
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

[issue39654] pyclbr: remove old references to class browser & add explain readmodule

2020-02-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39649] bdb.Bdb.format_stack_entry: checks for obsolete __args__

2020-02-23 Thread Terry J. Reedy
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

[issue1207613] Idle Editor: Bottom Scroll Bar

2020-02-25 Thread Terry J. Reedy
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

[issue39781] IDLE: Do not jump when select in codecontext

2020-02-27 Thread Terry J. Reedy
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

[issue39781] IDLE: Do not jump when select in codecontext

2020-02-27 Thread Terry J. Reedy
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

[issue39781] IDLE: Do not jump when select in codecontext

2020-02-28 Thread Terry J. Reedy
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

[issue39781] IDLE: Do not jump when select in codecontext

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue8824] Improve documentation of exec

2020-02-28 Thread Terry J. Reedy
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

[issue13790] In str.format an incorrect error message for list, tuple, dict, set

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +18049 pull_request: https://github.com/python/cpython/pull/18690 ___ Python tracker <https://bugs.python.org/issue13

[issue13790] In str.format an incorrect error message for list, tuple, dict, set

2020-02-28 Thread Terry J. Reedy
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

[issue13790] In str.format an incorrect error message for list, tuple, dict, set

2020-02-28 Thread Terry J. Reedy
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

[issue39717] Fix exception causes in tarfile module

2020-02-28 Thread Terry J. Reedy
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

[issue39718] TYPE_IGNORE, COLONEQUAL missing from py38 changes in token docs

2020-02-28 Thread Terry J. Reedy
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

[issue39718] TYPE_IGNORE, COLONEQUAL missing from py38 changes in token docs

2020-02-28 Thread Terry J. Reedy
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

[issue39725] unrelated `from None` exceptions lose prior exception information

2020-02-28 Thread Terry J. Reedy
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

[issue39718] TYPE_IGNORE, COLONEQUAL missing from py38 changes in token docs

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39727] cgi.parse() fatally attempts str.decode when handling multipart/form-data

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +Rhodri James, ethan.furman ___ Python tracker <https://bugs.python.org/issue39727> ___ ___ Python-bugs-list mailin

[issue39729] stat.S_ISXXX can raise OverflowError for remote file modes

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue39729> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39731] ModuleNotFoundError: No module named '_ctypes'

2020-02-28 Thread Terry J. Reedy
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

[issue39742] Enhancement: add `os.getdtablesize(..)` to `os` (`posix`) module

2020-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +larry ___ Python tracker <https://bugs.python.org/issue39742> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39745] BlockingIOError.characters_written represents number of bytes not characters

2020-02-28 Thread Terry J. Reedy
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

[issue39772] Python 2 FAQ shown in h...@python.org auto reply

2020-02-28 Thread Terry J. Reedy
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

[issue39782] local varible referenced a Exception won't be collected in function

2020-02-28 Thread Terry J. Reedy
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

[issue39784] Tuple comprehension

2020-02-28 Thread Terry J. Reedy
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

[issue39784] Tuple comprehension

2020-02-28 Thread Terry J. Reedy
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

[issue39050] The "Help" button in IDLE's config dialog does not work

2020-03-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue38747] Slowly introduce a subset of Jupyter console (IPython) features into CPython command line interactive mode

2020-03-03 Thread Terry J. Reedy
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

[issue38747] Slowly introduce a subset of Jupyter console (IPython) features into CPython command line interactive mode

2020-03-03 Thread Terry J. Reedy
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

[issue39820] Bracketed paste mode for REPL

2020-03-03 Thread Terry J. Reedy
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

[issue39844] IDLE 3.8.2 on MacOS 10.15.3 Launches to Black Windows

2020-03-04 Thread Terry J. Reedy
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

[issue39844] IDLE 3.8.2 on MacOS 10.15.3 Launches to Black Windows

2020-03-04 Thread Terry J. Reedy
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

[issue39852] IDLE: Copy/Paste behaves like Cut/Paste

2020-03-04 Thread Terry J. Reedy
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

[issue39844] IDLE 3.8.2 on MacOS 10.15.3 Launches to Black Windows

2020-03-05 Thread Terry J. Reedy
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.

[issue39852] IDLE: Goto should remove any selection

2020-03-05 Thread Terry J. Reedy
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

[issue27115] IDLE goto should always update status bar line & column

2020-03-05 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove any selection

2020-03-05 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove any selection

2020-03-05 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-05 Thread Terry J. Reedy
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

[issue39885] IDLE right click should unselect

2020-03-06 Thread Terry J. Reedy
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

[issue39885] IDLE right click should unselect

2020-03-06 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Agreed about right clicks. See new issue #39885. -- ___ Python tracker <https://bugs.python.org/issue39852> ___ ___ Python-bug

[issue39885] IDLE right click should clear any selection

2020-03-06 Thread Terry J. Reedy
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

[issue39885] IDLE right click should clear any selection

2020-03-06 Thread Terry J. Reedy
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

[issue39792] Two Ctrl+C is required to terminate when a pipe is blocking

2020-03-07 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue39792> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39827] setting a locale that uses comma as decimal separator breaks tkinter.DoubleVar

2020-03-07 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue39827> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39829] __len__ called twice in the list() constructor

2020-03-07 Thread Terry J. Reedy
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

[issue39832] Modules with decomposable characters in module name not found on macOS

2020-03-07 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue39832> ___ ___ Python-bug

[issue39861] French doc __futur__: Bad URL

2020-03-07 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-08 Thread Terry J. 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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39885] IDLE right click should clear any selection

2020-03-08 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-08 Thread Terry J. Reedy
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 ___

[issue39885] IDLE right click should clear any selection

2020-03-08 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-08 Thread Terry J. Reedy
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

[issue39885] IDLE right click should clear any selection

2020-03-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue27115] IDLE goto should use query.Query subclass

2020-03-08 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-08 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-08 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-08 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-09 Thread Terry J. Reedy
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

[issue39852] IDLE: Goto should remove selection and update the status bar

2020-03-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://github.com/python/devguide/issues/577 -- ___ Python tracker <https://bugs.python.org/issue39852> ___ ___ Python-bug

[issue27115] IDLE goto should use query.Query subclass

2020-03-09 Thread Terry J. Reedy
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

[issue27115] IDLE goto should use query.Query subclass

2020-03-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39107] Upgrade tcl/tk to 8.6.10 (Windows and maxOS)

2020-03-10 Thread Terry J. Reedy
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'

[issue22121] Start IDLE from icon in a better place.

2020-03-10 Thread Terry J. Reedy
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

[issue39927] IDLE.app fails to launch on macOS 10.15 if denied access to user's Document Folder

2020-03-10 Thread Terry J. Reedy
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

[issue39927] IDLE.app fails on macOS 10.15 if denied access to Documents

2020-03-10 Thread Terry J. Reedy
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

[issue39927] IDLE.app fails on macOS 10.15 if denied access to Documents

2020-03-11 Thread Terry J. Reedy
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

<    26   27   28   29   30   31   32   33   34   35   >