[issue34055] IDLE Shell: check syntax before smart indent

2018-12-24 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch, patch pull_requests: +10543, 10544, 10545 stage: test needed -> patch review ___ Python tracker ___ _

[issue34855] batch file variables

2018-12-24 Thread Anthony Blomme
Change by Anthony Blomme : -- keywords: +patch, patch pull_requests: +10546, 10547 stage: -> patch review ___ Python tracker ___ __

[issue34855] batch file variables

2018-12-24 Thread Anthony Blomme
Change by Anthony Blomme : -- keywords: +patch pull_requests: +10546 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue35579] Typo in in asyncio-task documentation

2018-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: You are correct. Would you make a patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue35580] Windows IocpProactor: CreateIoCompletionPort 4th arg 0xffffffff -- why is this value the default?

2018-12-24 Thread Jeff Robbins
New submission from Jeff Robbins : By default, the __init__ function of IocpProactor in windows_events.py calls CreateIoCompletionPort with a 4th argument of 0x, yet MSDN doesn't document this as a valid argument. https://docs.microsoft.com/en-us/windows/desktop/fileio/createiocomp

[issue35580] Windows IocpProactor: CreateIoCompletionPort 4th arg 0xffffffff -- why is this value the default?

2018-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: The value type is DWORD. 0x is a maximum allowed value for DWORD. 0 implies something like 8 for Intel i7. I don't remember the reason (the value was present is very first proactor implementation and never changed after it). Maybe giving Windows a

[issue17703] Trashcan mechanism segfault during interpreter finalization in Python 2.7.4

2018-12-24 Thread Trevor Joynson
Trevor Joynson added the comment: I can verify this bug does still in fact exist in all 3.x versions I've tested (3.4-3.7). It's been the cause of many long-standing segfaults we've been having at exit in applications that use OpenRAVE and/or boost::python::numeric. -- nosy: +ned.de

[issue17703] Trashcan mechanism segfault during interpreter finalization in Python 2.7.4

2018-12-24 Thread Trevor Joynson
Trevor Joynson added the comment: I can also confirm that the included patch does "workaround" the issue. A big pain point here for me is in determining what exit handler is causing this. GDB has been it's usual great help in determining information about the exact segfault, but the problem

[issue35580] Windows IocpProactor: CreateIoCompletionPort 4th arg 0xffffffff -- why is this value the default?

2018-12-24 Thread Jeff Robbins
Jeff Robbins added the comment: Per https://stackoverflow.com/questions/38133870/how-the-parameter-numberofconcurrentthreads-is-used-in-createiocompletionport, it seems that `NumberOfConcurrentThreads` controls what happens when multiple threads call `GetQueuedCompletionStatus`. But since

[issue33725] Python crashes on macOS after fork with no exec

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +10551 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue25234] test_eintr.test_os_open hangs under Xcode 7

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +10548 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue25234] test_eintr.test_os_open hangs under Xcode 7

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +10548, 10549 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue33725] Python crashes on macOS after fork with no exec

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +10551, 10552 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +10550 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2018-12-24 Thread Harmandeep Singh
Change by Harmandeep Singh : -- keywords: +patch, patch pull_requests: +10553, 10554 stage: -> patch review ___ Python tracker ___

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2018-12-24 Thread Harmandeep Singh
Change by Harmandeep Singh : -- keywords: +patch, patch, patch pull_requests: +10553, 10554, 10555 stage: -> patch review ___ Python tracker ___ __

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2018-12-24 Thread Harmandeep Singh
Change by Harmandeep Singh : -- keywords: +patch pull_requests: +10553 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue35561] Valgrind reports Syscall param epoll_ctl(event) points to uninitialised byte(s)

2018-12-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: I suspect Valgrind is being too conservative. union epoll_data is 64 bits wide but the file descriptor only occupies the first 32 bits. The last 32 bits don't need to be initialized by the application. -- nosy: +benjamin.peterson

[issue33661] urllib may leak sensitive HTTP headers to a third-party web site1111

2018-12-24 Thread shuoz
Change by shuoz : -- title: urllib may leak sensitive HTTP headers to a third-party web site -> urllib may leak sensitive HTTP headers to a third-party web site ___ Python tracker ___

<    1   2