This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients ncoghlan, shihai1991, vstinner
Date 2020-05-05.14:49:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588690170.27.0.496829854772.issue40520@roundup.psfhosted.org>
In-reply-to
Content
Global configuration variables are part of the C API. They are now documented:
https://docs.python.org/dev/c-api/init.html#global-configuration-variables

They are used to populate PyConfig (PEP 587). At startup, the PyConfig is copied into these global configuration variables. After the Python initilization, they are no longer read, but PyConfig (tstate->interp->config) is read instead.

You can simply remove the two lines comment from pydebug.h.
History
Date User Action Args
2020-05-05 14:49:30vstinnersetrecipients: + vstinner, ncoghlan, shihai1991
2020-05-05 14:49:30vstinnersetmessageid: <1588690170.27.0.496829854772.issue40520@roundup.psfhosted.org>
2020-05-05 14:49:30vstinnerlinkissue40520 messages
2020-05-05 14:49:30vstinnercreate