diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-08 22:18:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-08 22:18:46 (GMT) |
commit | 696e03553b9e455bd6729cee5a8be43a2924f537 (patch) | |
tree | 1921798050d0e6f60e64e0a8408690398d2b82f6 /Include/pythonrun.h | |
parent | 2e5f1178ac55c032982c69f4f4dd70c19f9fa46e (diff) | |
download | cpython-696e03553b9e455bd6729cee5a8be43a2924f537.zip cpython-696e03553b9e455bd6729cee5a8be43a2924f537.tar.gz cpython-696e03553b9e455bd6729cee5a8be43a2924f537.tar.bz2 |
Issue #477863: Print a warning at shutdown if gc.garbage is not empty.
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index faf930f..b9da550 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -148,6 +148,7 @@ PyAPI_FUNC(void) PyBytes_Fini(void); PyAPI_FUNC(void) PyByteArray_Fini(void); PyAPI_FUNC(void) PyFloat_Fini(void); PyAPI_FUNC(void) PyOS_FiniInterrupts(void); +PyAPI_FUNC(void) _PyGC_Fini(void); /* Stuff with no proper home (yet) */ PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, char *); |