From: Guido van Rossum Date: Mon, 28 Sep 1998 22:15:37 +0000 (+0000) Subject: Remove redundant definition of NEXITFUNCS. X-Git-Tag: v1.5.2a2~232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93d27547d00896775fbff943028d28fbbff3f1a5;p=python Remove redundant definition of NEXITFUNCS. (Reported by Jeff Rush.) --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 2be073bda0..2423465e01 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 -#define NEXITFUNCS 32 +/* NEXITFUNCS is defined in pystate.h */ static void (*exitfuncs[NEXITFUNCS])(); static int nexitfuncs = 0;