summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-01 16:01:57 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-01 16:01:57 (GMT)
commit2dcfc9618dbf1cf467436c4a0ccbb2d7df2ba25f (patch)
tree12c32bce2b927d43f22df1928e51c07df9b6a2f2 /Python
parent07d780089d96c228bbf5dfb3c07bc926b7d5eaa1 (diff)
downloadcpython-2dcfc9618dbf1cf467436c4a0ccbb2d7df2ba25f.zip
cpython-2dcfc9618dbf1cf467436c4a0ccbb2d7df2ba25f.tar.gz
cpython-2dcfc9618dbf1cf467436c4a0ccbb2d7df2ba25f.tar.bz2
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')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2423465..2be073b 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;