[issue37309] idlelib/NEWS.txt for 3.9.0 and backports

2020-07-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +20756 pull_request: https://github.com/python/cpython/pull/21614 ___ Python tracker ___ __

[issue37309] idlelib/NEWS.txt for 3.9.0 and backports

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset a667e1c66a62d509c39d30abf11778213a1e1ca0 by Terry Jan Reedy in branch '3.8': [3.8] bpo-37309: NEWS for #41373 (GH-21612) https://github.com/python/cpython/commit/a667e1c66a62d509c39d30abf11778213a1e1ca0 --

[issue41390] Errors and warnings on generate bytecode files

2020-07-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The warnings are from lib2to3 test data files that explicitly contain Python 2 syntax to verify if running 2to3 over those files does correct transformation. The other errors are test files for syntax error. -- nosy: +xtreak __

[issue41349] idle not going full screen when I rotate screen 90° on mac

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: What is 'it' in 'it works even after restart'? -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue41350] Use of zipfile.Path causes attempt to write after ZipFile is closed

2020-07-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Not sure if it's related to this issue there is an existing issue with ZipFile.__del__ : issue37773 -- nosy: +xtreak ___ Python tracker __

[issue41381] Google chat handler in Logging module

2020-07-24 Thread Anand Tripathi
Anand Tripathi added the comment: Got it, thanks! Yeah this enhancement is so particular to Google and cannot be a part of core library. I will create a pypi library of that. Thanks a lot for quick responses. Best, Anand Tripathi On Sat, 25 Jul 2020, 03:30 Vinay Sajip, wrote: > > Vinay Saj

[issue39830] zipfile.Path is not included in __all__

2020-07-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Closing it as resolved. Thanks Zackery and jaraco. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue41336] Sporadic segfaults during zoneinfo object creation stopped using Ctrl-C

2020-07-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Closing it as resolved. Thanks Zackery. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-24 Thread hai shi
hai shi added the comment: What's change for the performance benchmark? -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs

[issue41380] Add snake example to turtledemo

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: It has been awhile since we added anything to turtledemo, so this is plausible. It might be more interesting than some of the others. I will take a look. Until I do, I won't worry about maintenance. I and someone else fixed up the driver in summer 2014 an

[issue41380] Add snake example to turtledemo

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ehsonjon, 'fixed' means the the PR has be merged. -- resolution: fixed -> ___ Python tracker ___ ___

[issue41344] SharedMemory crash when size is 0

2020-07-24 Thread Vinay Sharma
Vinay Sharma added the comment: Hi, The patch aims to raise a value error, because before the patch also, ValueError was being raised in case size was negative. That's why I thought it would be correct behaviour if I raise ValueError in case size is 0. Do you mean to say, that OSError should

[issue41387] Escape needed in the email documentation example

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Antonio, when replying by email, please delete the quoted message (except possibly for a line or two that you want to quote). When posted on the web page, the quote is distracting noise that takes up vertical space. -- nosy: +terry.reedy __

[issue41344] SharedMemory crash when size is 0

2020-07-24 Thread Vinay Sharma
Vinay Sharma added the comment: Also, Linux created the shared memory with the passed name if size = 0, but threw error when it was being mapped to the process's virtual memory. Therefore, this scenario should be prevented before actually creating the shared memory segment in cases of Linux.

[issue41344] SharedMemory crash when size is 0

2020-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: No, I think ValueError on all systems is better. I have no idea what 'wnsm_4ab39616' is about other than something internal to Windows. It does not say what to do to correct the call. -- ___ Python tracker

<    1   2