[issue33135] Define field prefixes for the various config structs

2019-09-29 Thread STINNER Victor
Change by STINNER Victor : -- Removed message: https://bugs.python.org/msg353517 ___ Python tracker ___ ___ Python-bugs-list

[issue33135] Define field prefixes for the various config structs

2019-09-29 Thread STINNER Victor
STINNER Victor added the comment: (Oops, I posted a comment to the wrong issue, it was a comment for bpo-38317.) -- ___ Python tracker ___

[issue33135] Define field prefixes for the various config structs

2019-09-29 Thread STINNER Victor
STINNER Victor added the comment: Warnings options priority are badly documented. The latest major change was bpo-20361 when -b command line option changed to get the highest priority (-b > -W). -- ___ Python tracker

[issue33135] Define field prefixes for the various config structs

2019-05-27 Thread STINNER Victor
STINNER Victor added the comment: > As a particularly relevant example, we currently have 3 different > "warnoptions" fields: the private-to-main one for reading the command line > settings, the "wchar_t *" list in the core config, and the "PyObject *" list > object in the main interpreter

[issue33135] Define field prefixes for the various config structs

2019-05-15 Thread STINNER Victor
STINNER Victor added the comment: In the master branch, the C function config_read_cmdline() uses: * cmdline_warnoptions: -W command line arguments * env_warnoptions: PYTHONWARNINGS environment variable The config_init_warnoptions() uses these 2 list and combine it with other options,

[issue33135] Define field prefixes for the various config structs

2019-05-15 Thread Batuhan
Batuhan added the comment: +1 from me. But i dont understand why this issue triaged as "needs patch". Isn't it should be discussed first? -- nosy: +BTaskaya ___ Python tracker

[issue33135] Define field prefixes for the various config structs

2019-04-19 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33135] Define field prefixes for the various config structs

2018-03-25 Thread Nick Coghlan
New submission from Nick Coghlan : While working on https://bugs.python.org/issue33042, I found it hard to keep track of which kind of config struct a particular piece of code was referencing. As a particularly relevant example, we currently have 3 different "warnoptions"