[issue42632] Reassgining ZeroDivisionError will lead to bug in Except clause

2020-12-14 Thread Dennis Sweeney
Dennis Sweeney added the comment: This is just how local/nonlocal/global/builtin variables work in Python. When you assign to a name anywhere inside of a function, all occurrences of that name refer by default to a local variable. So the line "ZeroDivisionError = 1" tells the foo() function

[issue21536] extension built with a shared python cannot be loaded with a static python

2020-12-14 Thread STINNER Victor
Change by STINNER Victor : -- Removed message: https://bugs.python.org/msg382882 ___ Python tracker ___ ___ Python-bugs-list

[issue42614] Pathlib does not support a Cyrillic character 'ะน'

2020-12-14 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37945] [Windows] test_locale.TestMiscellaneous.test_getsetlocale_issue1813() fails

2020-12-14 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner title: test_locale.TestMiscellaneous.test_getsetlocale_issue1813() fails -> [Windows] test_locale.TestMiscellaneous.test_getsetlocale_issue1813() fails ___ Python tracker

[issue42571] [docs] add links to Glossary#parameter in libraries

2020-12-14 Thread Frederic Gagnon
Frederic Gagnon added the comment: The information could be added to https://docs.python.org/3/faq/library.html#general-library-questions , leading to links to where to find information about the library's syntax -- ___ Python tracker

[issue42634] Incorrect line number in bytecode for try-except-finally

2020-12-14 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +22616 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/23760 ___ Python tracker

[issue42571] [docs] add links to Glossary#parameter in libraries

2020-12-14 Thread Frederic Gagnon
Frederic Gagnon added the comment: I didn't know if that "*" was part of python, or just specific to the documentation. I started by just looking around the page (header, section on the left and footer) for some kind of link pointing to how to interpret the documentation. Not finding

[issue1294959] Add sys.platlibdir and configure --with-platlibdir to use /usr/lib64 on Fedora and SuSE

2020-12-14 Thread STINNER Victor
STINNER Victor added the comment: I marked bpo-40505 as a duplicate of this issue. -- ___ Python tracker ___ ___

[issue40505] getpath.c doesn't know about lib64

2020-12-14 Thread STINNER Victor
STINNER Victor added the comment: This issue is a duplicate of bpo-1294959. -- resolution: -> fixed stage: -> resolved status: open -> closed superseder: -> Add sys.platlibdir and configure --with-platlibdir to use /usr/lib64 on Fedora and SuSE

[issue36541] Make lib2to3 grammar better match Python, support the := walrus

2020-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: While I said i didn't care... and don't really want to... I found a reason to at least not omit pep-570 positional only arg parsing support give things like yapf still use it rather than forking their own copy. PR testing. -- assignee: ->

[issue36541] Make lib2to3 grammar better match Python, support the := walrus

2020-12-14 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +22615 pull_request: https://github.com/python/cpython/pull/23759 ___ Python tracker ___

[issue42417] Empty body {} in POST requests leads to 405 Method not allowed error

2020-12-14 Thread Bhushan Shelke
Bhushan Shelke added the comment: Attaching screenshot of TCP dump captured via wireshark Packet-2 -- Added file: https://bugs.python.org/file49678/packet-2.PNG ___ Python tracker

[issue42417] Empty body {} in POST requests leads to 405 Method not allowed error

2020-12-14 Thread Bhushan Shelke
Bhushan Shelke added the comment: Also attaching screenshot of TCP dump captured via wireshark Packet-1 -- Added file: https://bugs.python.org/file49677/packet-1.PNG ___ Python tracker

<    1   2