[issue30306] release arguments of contextmanager

2018-01-27 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset a278ad2faa76ae61569a58f36e06ba8745f4a9b7 by Nick Coghlan in branch 'master': bpo-30306: Add missing NEWS entry (GH-5374) https://github.com/python/cpython/commit/a278ad2faa76ae61569a58f36e06ba8745f4a9b7 -- ___

[issue30306] release arguments of contextmanager

2018-01-27 Thread Nick Coghlan
Nick Coghlan added the comment: Thanks for the issue report and patch Martin, and sorry for the long delay in getting it merged! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue17305] IDNA2008 encoding missing

2018-01-27 Thread Greg Lindahl
Greg Lindahl added the comment: I am avoiding Python's built-in libraries as much as possible in my aiohttp-based crawler because of this issue, but I cannot open a connection to https://xn--ho-hia.de because there is an 'IDNA does not round-trip' raise in the python 3.6 library ssl.py code.

[issue17305] IDNA2008 encoding missing

2018-01-27 Thread Nathaniel Smith
Nathaniel Smith added the comment: Greg: That's bpo-28414. There's currently no motion towards builtin IDNA 2008 support (this bug), but I *think* in 3.7 the ssl module will be able to handle pre-encoded A-labels like that. I'm a little confused about the exact status right now but there's be

[issue32690] Return function locals() in order of creation?

2018-01-27 Thread Guido van Rossum
Guido van Rossum added the comment: Heh, that's old code! IIRC I wrote a lot of loops like that, it was a little C trick I had picked up that reduced the loop overhead (since comparing to 0 is quicker than comparing to a variable). And until 3.6 it didn't really matter. I very much doubt the

[issue32690] Return function locals() in order of creation?

2018-01-27 Thread Nick Coghlan
Change by Nick Coghlan : -- assignee: -> ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32685] Erroneous suggestion in print statement

2018-01-27 Thread Sanyam Khurana
Change by Sanyam Khurana : -- pull_requests: +5217 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32685] Erroneous suggestion in print statement

2018-01-27 Thread Nitish
Change by Nitish : -- keywords: +patch pull_requests: +5216 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs

[issue32687] wrong meaning of arg in Py_tracefunc doc

2018-01-27 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset 9ed0aee27c249dada410a22fff4325a4a61df36d by Xiang Zhang in branch 'master': bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (#5361) https://github.com/python/cpython/commit/9ed0aee27c249dada410a22fff4325a4a61df36d

[issue32687] wrong meaning of arg in Py_tracefunc doc

2018-01-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +5218 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32687] wrong meaning of arg in Py_tracefunc doc

2018-01-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +5219 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29120] Move hash randomisation initialisation out of Python/random.c

2018-01-27 Thread STINNER Victor
STINNER Victor added the comment: I prefered random.c name since hash initialization is only a small part of the file, most of file is the implementation of os.urandom() and os.getrandom() which is used a runtime. -- ___ Python tracker

<    1   2