[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread STINNER Victor
STINNER Victor added the comment: Oh, the documentation in the PEP 587 was also wrong. I updated it: https://github.com/python/peps/commit/16bc2821eeb09b4692c372a5a359fd28993cd29b The "warnings options priority" is currently not documented at:

[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread miss-islington
miss-islington added the comment: New changeset c9ed9e6fc76323ed537fb79d4232bcd27d82c57e by Miss Islington (bot) in branch '3.8': bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) https://github.com/python/cpython/commit/c9ed9e6fc76323ed537fb79d4232bcd27d82c57e -- nosy:

[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +16064 pull_request: https://github.com/python/cpython/pull/16479 ___ Python tracker ___

[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread STINNER Victor
STINNER Victor added the comment: New changeset fb4ae152a9930f0e00cae8b2807f534058cf341a by Victor Stinner in branch 'master': bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) https://github.com/python/cpython/commit/fb4ae152a9930f0e00cae8b2807f534058cf341a --

[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +16063 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16478 ___ Python tracker ___

[issue38317] PyConfig (PEP 587): PyConfig.warnoptions should have the highest priority

2019-09-29 Thread STINNER Victor
New submission from STINNER Victor : The PEP 587 says that PyConfig.warnoptions has the highest priority for warnings options: https://www.python.org/dev/peps/pep-0587/#priority-and-rules But in the current implementation, PyConfig.warnoptions has... the lowest priority :-( Attached PR not