summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-01 16:01:57 +0000
committerGuido van Rossum <guido@python.org>1998-10-01 16:01:57 +0000
commit0a9923602ba1321641c6d0c296050a22f4f152dc (patch)
tree769a0c1396f51bfc7f73eae619a30c0015ac532f /Python/pythonrun.c
parent032511a00a4bdb19455e7dbec4eaac29f1a11d11 (diff)
downloadcpython-0a9923602ba1321641c6d0c296050a22f4f152dc.tar.gz
On second though, NEXITFUNCS should be defined here and not in
pystate.h; pystate.h doesn't use it (I thought I wanted to move the array there but that won't work).
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2423465e01..2be073bda0 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1035,7 +1035,7 @@ Py_FatalError(msg)
int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */
#endif
-/* NEXITFUNCS is defined in pystate.h */
+#define NEXITFUNCS 32
static void (*exitfuncs[NEXITFUNCS])();
static int nexitfuncs = 0;