summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorMarcel Plch <gmarcel.plch@gmail.com>2017-12-20 10:17:58 (GMT)
committerAntoine Pitrou <pitrou@free.fr>2017-12-20 10:17:58 (GMT)
commit776407fe893fd42972c7e3f71423d9d86741d07c (patch)
tree2d2a5781d83709c56d27e5815af2d7a2fc5726c0 /Include/internal
parent19760863623b636a63ccf649107d9504c6465a92 (diff)
downloadcpython-776407fe893fd42972c7e3f71423d9d86741d07c.zip
cpython-776407fe893fd42972c7e3f71423d9d86741d07c.tar.gz
cpython-776407fe893fd42972c7e3f71423d9d86741d07c.tar.bz2
bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611)
Change atexit behavior and PEP-489 multiphase init support.
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pystate.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pystate.h b/Include/internal/pystate.h
index 305526d..0b464bc 100644
--- a/Include/internal/pystate.h
+++ b/Include/internal/pystate.h
@@ -90,7 +90,6 @@ typedef struct pyruntimestate {
#define NEXITFUNCS 32
void (*exitfuncs[NEXITFUNCS])(void);
int nexitfuncs;
- void (*pyexitfunc)(void);
struct _gc_runtime_state gc;
struct _warnings_runtime_state warnings;