[issue10909] IDLE: thread hang, possibly related to print

2019-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have since learned the following about accessing tk widgets from non-main threads. 1. It seem to be reliable when tcl/tk is compiled with thread support but not when tcl/tk is not so compiled. (The latter is contrary to a claim in the doc.) 2. The tcl

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

2019-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Kristoffer, can you try removing 'bg=while' from autocomplete_w.py? -- ___ Python tracker <https://bugs.python.o

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

2019-03-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- stage: -> needs patch type: enhancement -> behavior ___ Python tracker <https://bugs.python.org/issue36176> ___ ___ Pyth

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

2019-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: The only thing missing is the OS, which I presume is some version and distribution of Linux. IDLE used tkinter which uses tcl/tk. From what you say, the latter, at least on Linux, picks up its default colors from the window manager, which for you happens

[issue36219] IDLE menu option to convert non-ascii quotes & other?

2019-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I support adding a new function, with these notes. 1. Let's limit the scope to actual reversible bugs introduced by 3rd party software we care about. Let's not try to anticipate every possible issue. Also, once we have a function to replace so

[issue36215] Should AppVeyor run compile Python in debug mode?

2019-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Testing with installed release builds is about twice as fast. f:\dev\37>python -m test -ugui -j14 # Debug 32-bit 3.7 ... 0:03:51 [412/416] test_tarfile passed (56 sec 7 ms) -- running: test_multiprocessing_spawn (1 min 46 sec) 0:04:14 [413/416] test_weak

[issue36229] Linear-time ops for some mutable collections.

2019-03-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue36229> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

2019-03-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: I presume that the folders have names I cannot see because they are white on white, even though the current directly name is black (on gray). The effect of the dark screen theme seems inconsistent. The open and save-as dialog boxes are provided by tk to

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

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

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

2019-03-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 491ef53c1548c2b593d3c35d1e7bf25ccb443019 by Terry Jan Reedy in branch 'master': bpo-36176: Fix IDLE autocomplete & calltip popup colors. (#12262) https://github.com/python/cpython/commit/491ef53c1548c2b593d3c35d1e

[issue36176] Fix IDLE Autocomplete / Calltip Window Colors

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

[issue30040] new empty dict can be more small

2019-03-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Some of my thoughts on this. Conceptually, I expected that clearing a normal dict should make it an empty normal dict. I presume that making it instead an empty shared key dict is a matter of efficiency and code simplicity. If the 'anomaly'

[issue31904] Python should support VxWorks RTOS

2019-03-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker <https://bugs.python.org/issue31904> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-03-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- Removed message: https://bugs.python.org/msg337896 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bug

[issue23216] IDLE grep/find/replace source code needs docstrings

2019-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are several minor things to fix after this (and multiple issues), including the difference between find in search and replace. It seems to me that is should be the same. We will definitely need to test changes on both Windows and Linux. The font

[issue36286] Random failure in test_idle

2019-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am guessing that test_idle and hence this test have been run over 500 days X 20 runs/day (1 times) since merged. This is the first report I have seen, though failures that get retested would be masked. My guess is a sporadic timing delay such that

[issue36266] Which module could not be found?

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: Phillip, when responding by email, please removed the quoted email (except possible for a line or 2) as it becomes noise when your email is placed on the web page. You can see the effect on https://bugs.python.org/issue36266 -- nosy: +terry.reedy

[issue36293] Nonblocking read sys.stdin raises error

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: Martin, did you mean to close this as a duplicate? -- nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue36

[issue36298] Lib/pyclbr.py fails when package spec cannot be determined

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: I finished patching pyclbr to be a complete module class and function browser in summer 2017, for use by IDLE's class browser. I verified the bug with the import API, with a twist. >>> import pyclbr >>> pyclbr.readmodule_ex(&

[issue36299] Deprecate 'u' type in array module

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: '4.0' is a stand-in for 'sometime after 2.7.final', scheduled for Jan 2020. A Pending... for 3.8.0, scheduled for Oct 2019, seems reasonable to me. Perhaps we should have a pydev discussion for the general issue of post 2.7 removals of

[issue36300] eval of comprehension cannot access local variables

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: You example is a list comprehension, but no matter. In 3.x, the value of a comprehension is the result of calling a temporary function. Functions access globals and nonlocals but not non-global locals of surrounding contexts. Class locals are an example

[issue36304] When using bz2 and lzma in mode 'wt', the BOM is not written

2019-03-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +benjamin.peterson, ezio.melotti, lemburg, vstinner ___ Python tracker <https://bugs.python.org/issue36304> ___ ___ Python-bug

[issue36305] Inconsistent behavior of pathlib.WindowsPath with drive paths

2019-03-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue36

[issue3905] subprocess failing in GUI applications on Windows

2019-03-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: I reran test with IDLE started 4 ways: I am closing this as out of date because the problem seems to have been fixed elsewise. 3.8.0a2+ 32 bit debug python, built today, opened from python icon, then idle started with 'import idlelib.idle' 3.8.

[issue3905] subprocess failing in GUI applications on Windows

2019-03-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since Win 10 was released a year after Jun 2014, I must have still been on Win 7 when I saw the failure. I believe there have some patches to filenos and subprocess since, but I don't know the relation between filenos and file handles. A current test

[issue36323] IDLE: always display full grep path

2019-03-16 Thread Terry J. Reedy
New submission from Terry J. Reedy : The second line of the Find in Files dialog is In files: [] When this is opened in the startup directory, Shell or an untitled editor, the entry starts as '*.py'. When this is opened in an titled editor

[issue36323] IDLE: always display full grep path

2019-03-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: To be more exact, if 'Find in Files' is called in an unsaved editor window, including Output windows, the the entry starts as '*.py'. I presume that this is relative to the current working directory, which is initially the startup dire

[issue36376] Wrong position of SyntaxError in IDLE

2019-03-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: IDLE should display the same error message and mark the error at the same spot that Python tells it too, which is to say, what is display and where it is marked when running Python in a console/terminal. The only difference is that IDLE uses red background

[issue21960] Better path handling in Idle find in files

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

[issue21625] Make help() beginner helpful when no PAGER or LESS variable

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I recently opened Python in a Mac Terminal (bash) window, tried help(ob), and being a beginner in this situation, had the same terrible frustrating experience. I am leaving this open to implement David Murray's suggestion and changed the title accord

[issue35771] IDLE: Fix tooltip Hovertiptest failure

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

[issue35675] IDLE: Refactor config_key module.

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

[issue35467] IDLE: unrequested pasting into Shell after restart

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

[issue33964] IDLE maxosc.overrideRootMenu: remove unused menudict

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue33964> ___ _

[issue21696] Idle: test configuration files

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue21

[issue31329] Add idlelib module entry to doc

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue21588] Idle: make editor title bar user configurable

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue21

[issue21647] Idle unittests: make gui, mock switching easier.

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue31329] Add idlelib module entry to doc

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: See also #14944, about the Using doc. -- ___ Python tracker <https://bugs.python.org/issue31329> ___ ___ Python-bugs-list m

[issue14944] Setup & Usage documentation for pydoc, IDLE, & 2to3

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: idle.html, derived from idle.rst, is now the IDLE help file. pip also has pip3 command; perhaps ensurepip should be mentioned. -- versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.

[issue30869] IDLE: Don't touch .idlerc when testing.

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I closed PR 2614 in response to Victor's comments, in particular his preference that tests not even read .idlerc. Since we do not want tests to depend on the contents, there is no need to even read the contents. (And the exception of testing write

[issue7936] sys.argv contains only scriptname

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing this because there is no identifiable issue with the current installers. Initial issues were reported fixed. The most recent issue reported by Alecz was that installing 2.7 after 3.4 caused python files to be opened by 2.7. This is what

[issue36323] IDLE: always display full grep path

2019-03-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks. I somehow never marked it for IDLE. Using groupby components, I discovered another +-10 and marked them and included in my list. -- ___ Python tracker <https://bugs.python.org/issue36

[issue33950] IDLE htest: remove spec for deleted tabbedpages.py

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

[issue28523] Idlelib.configdialog: use 'color' insteadof 'colour'

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue28523> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27372] Test_idle should stop changing locale

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue27372> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18316] Idle 2.7: update to simplify cross-version patches

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

[issue28514] Python (IDLE?) freezes on file save on Windows

2019-03-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue28514> ___ ___ Py

[issue27380] IDLE: add base Query dialog with ttk widgets

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue27380> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27437] IDLE tests must be able to set user configuration values.

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue27437> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22726] Idle: add help to config dialogs

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue22726> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27365] Allow non-ascii chars in IDLE NEWS.txt (for contributor names)

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue27365> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27239] Make idlelib.macosx self-contained.

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE nosy: -python-dev ___ Python tracker <https://bugs.python.org/issue27239> ___ ___ Python-bugs-list mailin

[issue24028] Idle: add doc subsection on calltips

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -python-dev ___ Python tracker <https://bugs.python.org/issue24028> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24028] Idle: add doc subsection on calltips

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue24028> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24222] Idle 2.7 -c, -r compile with print as function.

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue24222> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36396] Remove fgBg param of idlelib.config.GetHighlight()

2019-03-21 Thread Terry J. Reedy
New submission from Terry J. Reedy : The fgBg param of idlelib.config.GetHighlight() is used in only one idlelib call. Two other places could use it, but instead subscript the returned dict. Remove the parameter, make the function always return a dict and not a color, and have the one fgBg

[issue36396] Remove fgBg param of idlelib.config.GetHighlight()

2019-03-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +12444 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue36396] Remove fgBg param of idlelib.config.GetHighlight()

2019-03-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: There were two uses in IDLE and a few in the tests. -- stage: patch review -> commit review ___ Python tracker <https://bugs.python.org/issu

[issue36396] Remove fgBg param of idlelib.config.GetHighlight()

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c1419578a18d787393c7ccee149e7c1fff17a99e by Terry Jan Reedy in branch 'master': bpo-36396: Remove fgBg param of idlelib.config.GetHighlight() (GH-12491) https://github.com/python/cpython/commit/c1419578a18d787393c7ccee149e7c

[issue36396] Remove fgBg param of idlelib.config.GetHighlight()

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

[issue36311] Flaw in Windows code page decoder for large input

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have 24G if all working and would be willing to try to run a test case. -- nosy: +terry.reedy stage: -> test needed ___ Python tracker <https://bugs.python.org/issu

[issue36322] Argument typo in dbm.ndbm.open

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have trouble understanding this post. The parameter name is 'flag', not 'flags' and there are no typos, including in ndbm. The parameter name is singular because there is basically one flag with 4 possible values to indicate how to

[issue36286] Random failure in test_idle

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: #36389 appears to be a similar failure. -- ___ Python tracker <https://bugs.python.org/issue36286> ___ ___ Python-bugs-list m

[issue36339] test_ttk_guionly: test_traversal() fails randomly on AMD64 Windows8.1 Refleaks 2.7

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: My guess is that the failure is in event_generate(key), as in #36286. If so, this is a duplicate of the latter. How often have you seen a failure? For event_generate(''), etc, the failure time in my test script varies from 1000 to 100_000 tries

[issue36354] Use CreateProcessW for Python 2.7 on Windows.

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is CreateProcessW already used in current 3.x? -- nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue36

[issue36286] Random failure in test_idle

2019-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I reran test_cdfail and it did 2.7 million loops without failure. -- ___ Python tracker <https://bugs.python.org/issue36

[issue25199] Idle: add cross-references from and to macosxSupport

2019-03-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue25199> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21765] Idle: make 3.x HyperParser work with non-ascii identifiers.

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

[issue25225] Idle doc: redo Syntax Colors section

2019-03-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue25225> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27224] IDLE: editor versus grep line number differ

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

[issue24759] Idle: require tk 8.5 and ttk widgets, and drop unneeded code.

2019-03-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue24759> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36405] Use dict unpacking in idlelib

2019-03-22 Thread Terry J. Reedy
New submission from Terry J. Reedy : Replace 3 occurrences of 'd = d1.copy(); d.update(d2)' pattern with 'd = {**d1, **d2}'. Also remove unnecessary imports and uses of __main__. -- assignee: terry.reedy components: IDLE messages: 338643 nosy: terry.reedy prior

[issue36405] Use dict unpacking in idlelib

2019-03-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +12458 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue23205] Unit test needed for IDLE's GrepDialog.py's findfiles()

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Commit as-is. I will consider the Path.glob findfiles while working on #36323. Like walk, it yields in breadth first order. Unlike walk, it requires relative paths (which #37323 may need anyway) and needs code to deal with that. I like the breadth first

[issue36405] Use dict unpacking in idlelib

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 2b75155590eb42d25e474b776ee9fdcc4b3dc840 by Terry Jan Reedy in branch 'master': bpo-36405: Use dict unpacking in idlelib (#12507) https://github.com/python/cpython/commit/2b75155590eb42d25e474b776ee9fd

[issue36405] Use dict unpacking in idlelib

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I hit merge before seeing your post here. I based the globals change on >>> import __main__ >>> __main__.__dict__ is globals() True -- ___ Python tracker <https://bugs.

[issue36286] Random failure in test_idle

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I found that clicking on the font sample was usually enough to cause a failure and restart. Should we close this? -- ___ Python tracker <https://bugs.python.org/issue36

[issue36405] Use dict unpacking in idlelib

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: You mean that the patch will execute the code in imported module where the two are not even equal. So I will revert the '__main__' changes. I found two differences in completion behavior with the patch. One is a failure that should work, an

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

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

[issue27262] IDLE: move Aqua context menu code to maxosx

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue27262> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16177] Typing left parenthesis in IDLE causes intermittent Cocoa Tk crash on OS X

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE, macOS nosy: +ronaldoussoren, terry.reedy ___ Python tracker <https://bugs.python.org/issu

[issue21982] Idle configDialog: fix regression and add minimal unittest

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

[issue21695] Idle 3.4.1-: closing Find in Files while in progress closes Idle

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue21695> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21477] Idle: improve idle_test.htest

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue21477> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21450] [Issue 13630] IDLE: Find(ed) text is not highlighted while dialog box is open

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue21450> ___ ___ Py

[issue36405] Use dict unpacking in idlelib

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +12469 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issue36405> ___ ___ Py

[issue36405] Use dict unpacking in idlelib

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Also, __builtins__ is only a module, with a __dict__, in __main__. -- stage: patch review -> commit review ___ Python tracker <https://bugs.python.org/issu

[issue32823] Regression in test -j behavior and time in 3.7.0b1

2019-03-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for checking on this. 3.7.2 and 3.8.0a2 64 bit installed, as well as respository debug 32 bit 3.8.0a2+, are back to normal, with the quickest tests reporting within a few seconds. I will assume fixed for Zach also, hence closing

[issue36405] Use dict unpacking in idlelib

2019-03-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 0fe4513d9a5510ae91c0da7eb0433f79a6d4dda9 by Terry Jan Reedy in branch 'master': bpo-36405: IDLE - Restore __main__ and add tests (#12518) https://github.com/python/cpython/commit/0fe4513d9a5510ae91c0da7eb0433f

[issue36405] Use dict unpacking in idlelib

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

[issue36405] Use dict unpacking in idlelib

2019-03-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Immediate followup is #30348, add autocomplete tests. At least one would have failed with the initial patch. -- ___ Python tracker <https://bugs.python.org/issue36

[issue36419] IDLE autocomplete: refactor and polish code and tests

2019-03-24 Thread Terry J. Reedy
New submission from Terry J. Reedy : Followup to #30348. 1. Merge try_open_completions_event and _open_completions_later. The latter is only used in the former. Adjust tests to match. 2. The following in test_open_completions tests >>> "something self.text.ins

[issue30348] IDLE: Add test_autocomplete unittest

2019-03-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 113d735e2091427f9623097d2a222dd99b16b568 by Terry Jan Reedy (Louie Lu) in branch 'master': bpo-30348: IDLE: Add test_autocomplete unittest (GH-2209) https://github.com/python/cpython/commit/113d735e2091427f9623097d2a222d

[issue20338] Idle: increase max calltip width

2019-03-25 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue20338> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21981] Idle problem

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

[issue18104] Idle: make human-mediated GUI tests usable

2019-03-25 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue18104> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22614] Idle: problem in PyShellEditorWindow.color_breakpoint_text

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

[issue30348] IDLE: Add test_autocomplete unittests

2019-03-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Followup is #36419. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed title: IDLE: Add test_autocomplete unittest -> IDLE: Add test_autocomplete unittests ___ Python tra

[issue18429] IDLE: Format Paragraph doesn't function with comment blocks

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

<    61   62   63   64   65   66   67   68   69   70   >