diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-02 14:02:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 14:02:18 (GMT) |
commit | 66b7973c1b2e6aa6a2462c6b13971a08cd665af2 (patch) | |
tree | 29a6bfce69d2d244c2b307ab274e08a935be9fe5 /Include/internal/pycore_warnings.h | |
parent | 4482337decdbd0c6e2150346a68b3616bda664aa (diff) | |
download | cpython-66b7973c1b2e6aa6a2462c6b13971a08cd665af2.zip cpython-66b7973c1b2e6aa6a2462c6b13971a08cd665af2.tar.gz cpython-66b7973c1b2e6aa6a2462c6b13971a08cd665af2.tar.bz2 |
bpo-39796: Fix _warnings module initialization (GH-18739)
* Add _PyWarnings_InitState() which only initializes the _warnings
module state (tstate->interp->warnings) without creating a module
object
* Py_InitializeFromConfig() now calls _PyWarnings_InitState() instead
of _PyWarnings_Init()
* Rename also private functions of _warnings.c to avoid confusion
between the public C API and the private C API.
Diffstat (limited to 'Include/internal/pycore_warnings.h')
-rw-r--r-- | Include/internal/pycore_warnings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_warnings.h b/Include/internal/pycore_warnings.h index 9a72526..cafe305 100644 --- a/Include/internal/pycore_warnings.h +++ b/Include/internal/pycore_warnings.h @@ -17,6 +17,8 @@ struct _warnings_runtime_state { long filters_version; }; +extern PyStatus _PyWarnings_InitState(PyThreadState *tstate); + #ifdef __cplusplus } #endif |