[issue30728] IDLE: Modernize configdialog code.

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I reviewed IDLE issues with patches. I will post my updated issues list on the roadmap issue, #30422. Of relevance to this issue is that config related patches are split between config, configdialog, and config_key, and limited to 3 or 4 each. I decided tha

[issue30726] [Windows] Warnings in elementtree due to new expat

2017-06-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8f525882fa43209d52afdb99753de2f5111d7433 by Victor Stinner in branch 'master': bpo-30726: expat: Fix compiler warnings on Windows 64-bit (#2368) https://github.com/python/cpython/commit/8f525882fa43209d52afdb99753de2f5111d7433 -- __

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: I submitted a PR for #1. For #4, I had a question to this related to ttk widgets. When I had moved the widgets to ttk, I had to remove the fg and bg settings because the ttk versions of Label, Frame, and Widget don't have those as part of their config. Do yo

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 18ede062581edb7e8d359d02cd3419466114cf5a by terryjreedy (csabella) in branch 'master': bpo-24813: IDLE: Add default title to help_about (#2366) https://github.com/python/cpython/commit/18ede062581edb7e8d359d02cd3419466114cf5a -- ___

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2419 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: tk Text does not have a ttk version and does have default and tab settable colors. Maybe I should start experimenting with tagged text instead of Labels and Buttons. Let's skip 4 for now. You can work on 'default non-model' (I don't want to toss the modal c

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset bd570f42110b99bade6e58e3ed2d620f27a92fc3 by terryjreedy in branch '3.6': [3.6] bpo-24813: IDLE: Add default title to help_about (GH-2366) (#2369) https://github.com/python/cpython/commit/bd570f42110b99bade6e58e3ed2d620f27a92fc3 -- _

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: There is something more I want to add: the bitness of the machine. >>> platform.architecture() ('64bit', 'WindowsPE') Display as '(64 bit)' or '(32 bit). For the moment, add this to the title since it will not necessarily fit after python version. See the do

[issue25720] Fix curses module compilation with ncurses6

2017-06-23 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: Ping. I updated PR a bit: macOS is joined to new compile condition and remove platform-specific condition. -- ___ Python tracker ___ ___

[issue30744] Local variable assignment is broken when combined with threads + tracing + closures

2017-06-23 Thread Nathaniel Smith
New submission from Nathaniel Smith: The attached script looks innocent, but gives wildly incorrect results on all versions of CPython I've tested. It does two things: - spawns a thread which just loops, doing nothing - in the main thread, repeatedly increments a variable 'x' And most of the

[issue30606] The reply's additional 'Re' is ok

2017-06-23 Thread Lovelyn
New submission from Lovelyn: love On Jun 9, 2017 11:39 AM, "Lovelyn" wrote: > > New submission from Lovelyn: > > lovecoli...@gmail.com > > -- > messages: 295479 > nosy: Love > priority: normal > severity: normal > status: open > title: The reply's additional 'Re' is ok > > _

[issue30730] Injecting environment variable in subprocess on Windows

2017-06-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 3.3 and 3.4 starves from this issue -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bug

[issue13821] misleading return from isidentifier

2017-06-23 Thread Matthias Bussonnier
Matthias Bussonnier added the comment: I have been bitten by that as well. I think the doc should mention to verify that the given string is normalized, not that it **should** be normalized. Agreed that If isidentifier could also possibly grow a `allow_non_nfkc=True` default parameter that wou

[issue30730] Injecting environment variable in subprocess on Windows

2017-06-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +2420 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30744] Local variable assignment is broken when combined with threads + tracing + closures

2017-06-23 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue30708] Ensure that the result of PyUnicode_AsWideCharString() doesn't contain null characters if size is not returned

2017-06-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone please make a review of this PR? Especially the documentation part. This PR is a part of a set of PRs that fix potential vulnerabilities (issue13617, issue30730, and yet few issues planned). -- ___ Py

[issue30744] Local variable assignment is broken when combined with threads + tracing + closures

2017-06-23 Thread Armin Rigo
Changes by Armin Rigo : -- nosy: +arigo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue30744] Local variable assignment is broken when combined with threads + tracing + closures

2017-06-23 Thread Armin Rigo
Armin Rigo added the comment: A version of the same problem without threads, using generators instead to get the bug deterministically. Prints 1, 1, 1, 1 on CPython and 1, 2, 3, 3 on PyPy; in both cases we would rather expect 1, 2, 3, 4. -- Added file: http://bugs.python.org/file46972

<    1   2