summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_pylifecycle.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2019-05-10 17:29:55 (GMT)
committerGitHub <noreply@github.com>2019-05-10 17:29:55 (GMT)
commit86ea58149c3e83f402cecd17e6a536865fb06ce1 (patch)
treea7a26190fcb98d298cc992da4ad9d8f663304bdb /Include/internal/pycore_pylifecycle.h
parent351c67416ba4451eb3928fa0b2e933c2f25df1a3 (diff)
downloadcpython-86ea58149c3e83f402cecd17e6a536865fb06ce1.zip
cpython-86ea58149c3e83f402cecd17e6a536865fb06ce1.tar.gz
cpython-86ea58149c3e83f402cecd17e6a536865fb06ce1.tar.bz2
bpo-36737: Use the module state C-API for warnings. (gh-13159)
Diffstat (limited to 'Include/internal/pycore_pylifecycle.h')
-rw-r--r--Include/internal/pycore_pylifecycle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_pylifecycle.h b/Include/internal/pycore_pylifecycle.h
index adb1f5d..7144bbc 100644
--- a/Include/internal/pycore_pylifecycle.h
+++ b/Include/internal/pycore_pylifecycle.h
@@ -81,7 +81,7 @@ extern void PyLong_Fini(void);
extern void _PyFaulthandler_Fini(void);
extern void _PyHash_Fini(void);
extern int _PyTraceMalloc_Fini(void);
-extern void _PyWarnings_Fini(_PyRuntimeState *runtime);
+extern void _PyWarnings_Fini(PyInterpreterState *interp);
extern void _PyGILState_Init(
_PyRuntimeState *runtime,