[issue40071] test__xxsubinterpreters leaked [1, 1, 1] references: test_ids_global()

2020-03-25 Thread STINNER Victor
STINNER Victor added the comment: The folowing test is enough to reproduce the leak: def test_ids_global(self): interp1 = interpreters.create() script, rpipe = _captured_script("pass") interpreters.run_string(interp1, script) rpipe.close() interp2 =

[issue40072] UDP Echo Server raise OSError when recved packet

2020-03-25 Thread honglei jiang
New submission from honglei jiang : Env: Win7/Python3.8.2 x64/ Output: Starting UDP server Traceback (most recent call last): File "d:\ProgramData\Python38\lib\asyncio\proactor_events.py", line 548, in _loop_reading res = fut.result() File "d:\ProgramData\Python38\lib\asyncio\windows_e

[issue40072] UDP Echo Server raise OSError when recved packet

2020-03-25 Thread honglei jiang
Change by honglei jiang : Added file: https://bugs.python.org/file49001/udp_ipv6_client.py ___ Python tracker ___ ___ Python-bugs-list maili

[issue40072] IPUDP Echo Server raise OSError when recved packet

2020-03-25 Thread honglei jiang
Change by honglei jiang : -- title: UDP Echo Server raise OSError when recved packet -> IPUDP Echo Server raise OSError when recved packet ___ Python tracker ___ _

[issue40072] Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved packet

2020-03-25 Thread honglei jiang
Change by honglei jiang : -- title: IPUDP Echo Server raise OSError when recved packet -> Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved packet ___ Python tracker __

[issue40072] Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved any packet

2020-03-25 Thread honglei jiang
Change by honglei jiang : -- title: Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved packet -> Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved any packet ___ Python tracker _

[issue40067] Improve error messages for multiple star expressions in assignment

2020-03-25 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks for the quick fix, Furkan! :) -- nosy: +pablogsal resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue40067] Improve error messages for multiple star expressions in assignment

2020-03-25 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset cb6534e1a8833b3f20bd88f52cf62a003426e855 by Furkan Önder in branch 'master': bpo-40067: Improve error messages for multiple star expressions in assignments (GH-19168) https://github.com/python/cpython/commit/cb6534e1a8833b3f20bd88f52cf62a

[issue40072] Win7/Python3.8/asyncio IPv6 UDP Server raise OSError when recved any packet

2020-03-25 Thread honglei jiang
honglei jiang added the comment: It works under asyncio.WindowsSelectorEventLoopPolicy(), but failed under Python3.8 default policy. -- ___ Python tracker ___ ___

[issue40065] py39: remove deprecation note for xml.etree.cElementTree

2020-03-25 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue39943] Meta: Clean up various issues in C internals

2020-03-25 Thread Andy Lester
Change by Andy Lester : -- pull_requests: +18530 pull_request: https://github.com/python/cpython/pull/19170 ___ Python tracker ___ _

[issue39943] Meta: Clean up various issues in C internals

2020-03-25 Thread Inada Naoki
Inada Naoki added the comment: New changeset 62d21c9d900664b2ca30c2d7edd80b6628abdf62 by Andy Lester in branch 'master': bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170) https://github.com/python/cpython/commit/62d21c9d900664b2ca30c2d7edd80b6628abdf62 -- nosy:

[issue40012] Avoid Python 2 documentation to appear in Web search results

2020-03-25 Thread Ammar Askar
Ammar Askar added the comment: Instead of noindex maybe the 3.x documentation can be marked as the canonical one: https://support.google.com/webmasters/answer/139066 This should still allow the old docs to be crawled but emphasize the latest docs on the website: > Google Search result usual

[issue38250] enum.Flag should be more set-like

2020-03-25 Thread Vedran Čačić
Vedran Čačić added the comment: 1. +0 _if_ the implementation is easy to explain. If backward compatibility is an issue, we can always add a property: for flag in flags.set: (though set might imply unorderedness:) 2. -1. Guido said long ago that all lens should be O(1). (Of course, if you do m

[issue40043] RegExp Conditional Construct (?(id/name)yes-pattern|no-pattern) Problem

2020-03-25 Thread Leon Hampton
Leon Hampton added the comment: Matthew Barnett & SilentGhost, Thank you for your prompt responses. (Really prompt. Amazing!) SilentGhost, Regarding your response, I used re.search, not re.match. When I used re.match, the regex failed. When I used re.search, it matched. Here are my tests. You

[issue38237] Expose meaningful keyword arguments for pow()

2020-03-25 Thread Ammar Askar
Change by Ammar Askar : -- pull_requests: +18531 pull_request: https://github.com/python/cpython/pull/19171 ___ Python tracker ___ _

[issue40071] test__xxsubinterpreters leaked [1, 1, 1] references: test_ids_global()

2020-03-25 Thread Paulo Henrique Silva
Paulo Henrique Silva added the comment: I've got it, will investigate asap. -- ___ Python tracker ___ ___ Python-bugs-list mailing

<    1   2