Fix a compiler warning in pycore_pylifecycle.h (GH-22331)

This commit is contained in:
Pablo Galindo 2020-09-21 11:57:22 +01:00 committed by GitHub
parent 7aa534c956
commit 724df8325d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ extern void _PyFaulthandler_Fini(void);
extern void _PyHash_Fini(void);
extern void _PyTraceMalloc_Fini(void);
extern void _PyWarnings_Fini(PyInterpreterState *interp);
extern void _PyAST_Fini();
extern void _PyAST_Fini(void);
extern PyStatus _PyGILState_Init(PyThreadState *tstate);
extern void _PyGILState_Fini(PyThreadState *tstate);