[issue35593] Register standard browser: Chrome

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: As near as I can tell, this is *not* a duplicate of #8232. -- nosy: +terry.reedy stage: patch review -> ___ Python tracker <https://bugs.python.org/issu

[issue35593] Register standard browser: Chrome

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10652 ___ Python tracker <https://bugs.python.org/issue35593> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35594] Python script generating Segmentation Fault

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: The script has 14 imports from 10 external packages, perhaps half of which include C code. In such cases, the crash is nearly always in the external package, and Daugeras has already identified a pandas routine. Daugeras, you can re-open if you gain

[issue31858] IDLE: cleanup use of sys.ps1 and never set it.

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: By mistake, I deleted the setting of context_use_ps1 in PyShell while still in use in several places. Fixed in #34055. -- ___ Python tracker <https://bugs.python.org/issue31

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2018-12-28 Thread Terry J. Reedy
New submission from Terry J. Reedy : Attribute .context_use_ps1 is False in EditorWindow and Outwin, True in PyShell. It is use to switch code paths in multiple classes. It is equal to isinstance(self/editwin, PyShell) (which requires an import). It has the same truth value as attribute

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Even before this fix, in 3.7.2, I no longer see the extra blank lines I reported in msg321135 either on Windows or macOS. I did still see the persistent and expanding indents reported in the opening post. I believe that this is what Raymond also referred

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I 'moved' pr-11307 to #35610 by changing the title. -- ___ Python tracker <https://bugs.python.org/issue34055> ___ ___

[issue35598] IDLE: Modernize config_key module

2018-12-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b0a6196ffd58ff91462191f426706897dc920eee by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35598: IDLE: Increase test coverage for config_key.py (#11360) https://github.com/python/cpyt

[issue35616] Change references to '4.0'.

2018-12-29 Thread Terry J. Reedy
New submission from Terry J. Reedy : https://docs.python.org/3/c-api/unicode.html#deprecated-py-unicode-apis says "Deprecated since version 3.3, will be removed in version 4.0." (I am aware that the quote above was written before we decided that '3.9' should be followed b

[issue35598] IDLE: Modernize config_key module

2018-12-29 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10687 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-29 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10686 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-12-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: should this be closed? -- nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue35031> ___ ___ Python-bugs-list m

[issue35620] asyncio test failure on appveyor

2018-12-30 Thread Terry J. Reedy
New submission from Terry J. Reedy : https://ci.appveyor.com/project/python/cpython/builds/21296354?fullLog=true Blocked merge. Passed on Azure Pipeline +- same time. Appveyor re-run passed. Please disable or weaken the false positive tests. I will propose a different solution elsewhere

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4bd79c38efe3cc0a3c724605cf9474e2d1b6b6e2 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35598: IDLE: Switch config_key dialog to ttk widgets (GH-11365) https://github.com/python/cpyt

[issue35620] asyncio test failure on appveyor

2018-12-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: My position is that tests that are known to occasionally fail independently of any changes in particular PRs should not be allowed to block merging. In the context of CI, the failure is a lie. One solution, and the easiest, is to disable the test. That is

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b4ea8bb080f63ef27682f3f9bbaa4d12a83030b1 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35598: IDLE - Globalize some config_key objects (GH-11392) https://github.com/python/cpython/commit/b4ea8bb080f63ef27682f3f9bbaa4d

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10766 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10765 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: add ttk.Frame inside searchbaseToplevel

2018-12-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: *35598 converted config_key to ttk, including a t tk frame inside toplevel. -- ___ Python tracker <https://bugs.python.org/issue33

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: This issue looks complete to me unless there is something simple not previously mentioned. Fixing cancel would be a separate issue. Separating window and frame needs separate discussion on a separate issue, and is not a priority now. Model popups are

[issue33987] IDLE: add ttk.Frame inside searchbaseToplevel

2018-12-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: The change is trivial and there was already a Frame test, which initially failed. I will open another issue about similar changes needed elsewhere. -- nosy: +cheryl.sabella ___ Python tracker <ht

[issue33987] IDLE: add ttk.Frame inside searchbaseToplevel

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch pull_requests: +10771, 10772 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33987] IDLE: add ttk.Frame inside searchbaseToplevel

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +10771 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33987] IDLE: add ttk.Frame inside searchbaseToplevel

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch, patch pull_requests: +10771, 10772, 10773 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33987] IDLE: use ttk.Frame for ttk widgets

2018-12-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: We don't really need a new issue. Mark's opening post was generic. I grepped for ttk to get existing ttk imports and am making Frame and LabelFrame the first item or items for each import. I won't worry about whether any background is v

[issue33987] IDLE: use ttk.Frame for ttk widgets

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10773 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2018-12-31 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10772 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35500] Align expected and actual calls on mock.assert_called_with error message

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Expected" and "Observed" seem good. I like "Received" slightly better, but would not argue with PR author. It depends on whether one anthropomorphizes the assert function (or test machinery) as saying 'I expe

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: On my Macbook with Mohave with installed python.org 3.7.2, compiled against tk 8.6.8, the startup header is Python 3.7.2 (v3.7.2.9a3ffc0492, Dec 24 ...) [Clang 6.0 .. on Darwin]. Your header is quite different (repository?, tk version?) but the version is

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10543 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 11307 was moved to #35610. -- ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailin

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset aff0adabf3ace62073076f4ce875ff568f2d3180 by Terry Jan Reedy in branch 'master': bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) https://github.com/python/cpython/commit/aff0adabf3ace62073076f4ce875ff

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10827 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10828 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-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

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset ab54b9a130c88f708077c2ef6c4963b632c132b3 by Terry Jan Reedy (Emmanuel Arias) in branch 'master': bpo-35641: IDLE - format calltip properly when no docstring (GH-11415) https://github.com/python/cpyt

[issue35617] unittest discover does not work with implicit namespaces

2019-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: If this is truly a duplicate, this should be closed and the issue number in the pr title changed to 23882. Any reviewer should look at both proposed fixes, as they are not the same. The other patch has what looks like the beginning of a test

[issue35625] Comprehension doc doesn't mention buggy class scope behavior

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: documentation of list, set & dict comprehension make no mention of buggy class scope behavior -> Comprehension doc doesn't mention buggy class scope behavior versions: +Python 3.8 -Python 2.7, Python 3.4, Python 3.5

[issue35627] multiprocessing.queue in 3.7.2 doesn't behave as it was in 3.7.1

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue35627> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35629] hang and/or leaked processes with multiprocessing.Pool(...).imap(...)

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +pitrou versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue35629> ___ ___ Python-bugs-list mailin

[issue35624] Shelve sync issues while using Gevent

2019-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.6 only gets security fixes. Please verify that there is a problem in 3.8 (or at least 3.7) Also demonstrate that issue is not with the 3rd party gevent module. Does gevent includes compiled non-python code? (I suspect it does, but don't know.)

[issue35634] kwargs regression when there are multiple entries with the same key

2019-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Serhiy, nosying you because Ammar identified your commit as relevant. https://github.com/python/cpython/commit/e036ef8fa29f27d57fe9f8cef8d931d4122d8223 --- 3.6 is also security-fix only. Normally, code bug reports need a minimal, reproducible, initially

[issue35639] Lowecasing Unicode Characters

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Latin Capital Letter I with Dot Above ___ Python tracker <https://bugs.python

[issue35649] http.client doesn't close. Infinite loop

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue35649> ___ ___ Python-bugs-list m

[issue35651] PEP 257 (active) references PEP 258 (rejected) as if it were active

2019-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Guido, you are the -- nosy: +goodger, gvanrossum, terry.reedy versions: -Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue35651] PEP 257 (active) references PEP 258 (rejected) as if it were active

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- Removed message: https://bugs.python.org/msg333003 ___ Python tracker <https://bugs.python.org/issue35651> ___ ___ Python-bug

[issue35654] Remove 'guarantee' that sorting only relies on __lt__ from sorting howto

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue35654> ___ ___ Python-bugs-list mailin

[issue35657] multiprocessing.Process.join() ignores timeout if child process use os.exec*()

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +davin, pitrou stage: -> needs patch versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue35616] Change references to '4.0'.

2019-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: After reading Serhiy's explanation, I agree that '4.0' is better than a specific '3.nn'. I did not realize how much was still left to be done. We can revisit this when there is a definite removal date. A literal 'sometime&#x

[issue35660] IDLE: Remove import * from window.py

2019-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: 'import *' is a PEP 8 violation. Depending in the * import to import sys is a bug. -- type: enhancement -> behavior ___ Python tracker <https://bugs.pytho

[issue35668] Improve test coverage for idlelib

2019-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I (we) agree that idlelib needs even better test coverage. Some history: 1. I added idle_test/ 5-1/2 years ago. Only the calltip module had automated tests easily converted to unittests (test_calltip). 2. Other exiting tests, requiring human judgement, were

[issue35668] Improve test coverage for idlelib

2019-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Great. I suggest then that you start with untested, normal, non-GUI (non-tkinter) code, assuming that you can find some. This can mean segregating functional code from gui code if they are currently intertwined. As point 1 above suggested, IDLE, which

[issue35668] Improve test coverage for idlelib

2019-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I like that choice. There are 15 open issues for debugger and I have notes on a few possible enhancements. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35660] IDLE: Fix imports in window.py

2019-01-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: IDLE: Remove import * from window.py -> IDLE: Fix imports in window.py ___ Python tracker <https://bugs.python.org/issu

[issue35660] IDLE: Fix imports in window.py

2019-01-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35660: Fix imports in idlelib.window (#11434) https://github.com/python/cpython/commit/11303dd6035a7d7f78025ce5a3e3b9

[issue35660] IDLE: Fix imports in window.py

2019-01-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -miss-islington resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35675] IDLE: Refactor config_key module.

2019-01-06 Thread Terry J. Reedy
New submission from Terry J. Reedy : Continuation of #35598. Cheryl said there (rearranged): "PR11427 refactors the main frame from the window. My main goal in splitting them was more for readability rather than for being able to add it to a Tabbed window. As a follow up to this ref

[issue35598] IDLE: Modernize config_key module

2019-01-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: I moved PR 11427 to new issue #35675. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35668] Improve test coverage for idlelib

2019-01-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10916 ___ Python tracker <https://bugs.python.org/issue35668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35668] Improve test coverage for idlelib

2019-01-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10914 ___ Python tracker <https://bugs.python.org/issue35668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35668] Improve test coverage for idlelib

2019-01-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10915 ___ Python tracker <https://bugs.python.org/issue35668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35668] Improve test coverage for idlelib

2019-01-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: I like having multiple commits with explanatory messages. They get squashed when merging into master. Unless I get distracted and forget, I will squash the messages. -- ___ Python tracker <ht

[issue32592] Drop support of Windows Vista in Python 3.7

2019-01-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: AFAIK, it was specifically Martin Loewis who did not want a specific list in PEP 11. Since he is long inactive, I think you and Steve should feel free to change that. -- ___ Python tracker <ht

[issue6143] IDLE - an extension to clear the shell window

2019-01-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: An SO question today got me to look more at SO questions and discussion, and this appears to be the most requested feature. https://stackoverflow.com/questions/1432480/any-way-to-clear-pythons-idle-window - 2009, 129 upvotes, 32 answers (not all read yet

[issue35690] IDLE: Fix and test debugger.

2019-01-08 Thread Terry J. Reedy
New submission from Terry J. Reedy : Move PR 11451 from #35668. * Remove use of blank comments to make blank lines. * Greatly expand test_debugger. * Fix a couple of issues discovered while writing tests. (It is possible that one of these caused one of the reported debugger bugs, but we don&#

[issue35690] IDLE: Fix and test debugger.

2019-01-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <https://bugs.python.org/issue35690> ___ ___ Python-bugs-list mai

[issue35668] Improve test coverage for idlelib

2019-01-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10913 ___ Python tracker <https://bugs.python.org/issue35668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35668] Improve test coverage for idlelib

2019-01-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I moved the debugger tests to #35690. I want to keep this issue for general discussion of testing IDLE, and possibly related PRs improving the documentation thereof. Serhiy Storchaka, the current tkinter maintainer, and I, have decided that IDLE should

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10990, 10991 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsub

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10990, 10991, 10992 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailin

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10990 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10992 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10991 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset ee6559436797032b816dfb8c6376c9a451014962 by Terry Jan Reedy in branch 'master': bpo-35641: Move IDLE blurb to IDLE directory (#11479) https://github.com/python/cpython/commit/ee6559436797032b816dfb8c6376c9

[issue35700] Place, Pack and Grid should return the widget

2019-01-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: 1. (Josh beat me here.) One of Python's design features is that stdlib functions/methods that mutate (or register) an object never (as far as I can remember) return the object. (If they return anything other than None, it is something other tha

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10995 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10994 ___ Python tracker <https://bugs.python.org/issue35641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35712] Make NotImplemented unusable in boolean context

2019-01-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: I consider it a nice feature of Python that all builtin objects, and, AFAIK (and Josh, apparently), all stdlib class instances, have a boolean value. (I am aware of numpy's element-wise behavior.) I hate to give this up. This is part of Python'

[issue35718] Cannot initialize the distutils "force" command-option

2019-01-11 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: Cannot initialize the "force" command-option -> Cannot initialize the distutils "force" command-option ___ Python tracker <https://

[issue35728] Tkinter font nametofont requires default root

2019-01-12 Thread Terry J. Reedy
New submission from Terry J. Reedy : font.Font.__init__, font.families, and font.names have a 'root=None' argument and start with if not root: root = tkinter._default_root But font.nametofont does not, and so it calls Font without passing a root argument: return

[issue35196] IDLE text squeezer is too aggressive and is slow

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11152 ___ Python tracker <https://bugs.python.org/issue35196> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35196] IDLE text squeezer is too aggressive and is slow

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11151 ___ Python tracker <https://bugs.python.org/issue35196> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
New submission from Terry J. Reedy : PR 10454 for #35196 added, among other things, more tests to test_squeezer.py. SqueezerTest.test_reload initially worked on Mac and personal Windows machines. It failed on Cheryl Sabella's personal Ubuntu machine because doubling the nominal font

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch, patch pull_requests: +11153, 11154, 11155 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch pull_requests: +11153, 11154 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +11153 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11154 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11155 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Victor, a particular test assert fails only on Gentoo bots (see above). Questions: 1. Can we disable the assert only on those machines? 2. I sometimes see what look like debug prints in buildbot test logs. Correct? If so, stdout or stderr

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5bb146aaea1484bcc117ab6cb38dda39ceb5df0f by Terry Jan Reedy in branch 'master': bpo-35730: Disable IDLE test_reload assertion. (GH-11543) https://github.com/python/cpython/commit/5bb146aaea1484bcc117ab6cb38dda

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11157 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I just realized that the Gentoo bots where this failed are, last I knew, the only *nix bots with X installed. The non-Windows CI bots run the gui tests with an X simulator. So Gentoo might not be the only distribution where this would fail. Two debug

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: The corresponding 3.7 buildbots failed the same way, 6 not greater than 6, as the 3.8 buildbots. https://buildbot.python.org/all/#/builders/108/builds/895/steps/5/logs/stdio https://buildbot.python.org/all/#/builders/115/builds/888/steps/4/logs/stdio One

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +11181, 11182, 11183 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailin

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +11181 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +11181, 11182 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsub

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11183 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35730] IDLE: Fix squeezer test_reload.

2019-01-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -11182 ___ Python tracker <https://bugs.python.org/issue35730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35763] IDLE calltips: make positional note less obtrusive

2019-01-17 Thread Terry J. Reedy
New submission from Terry J. Reedy : #19903 made calltip.getargspec use inspect.signature. The latter may include '/' following positional-only arguments. Slashes are possible for the growing number of C-coded functions processed with Argument Clinic. They appear in both help

[issue35764] IDLE: revise calltip doc

2019-01-17 Thread Terry J. Reedy
New submission from Terry J. Reedy : Add cross-reference from Menu section entry. Document '/' for builtins. Check other details. (Also remove 'extension' from end of previous entry.) -- assignee: terry.reedy components: IDLE messages: 333898 nosy: terry.re

<    56   57   58   59   60   61   62   63   64   65   >