diff options
author | Guido van Rossum <guido@python.org> | 1998-10-01 16:02:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-01 16:02:31 (GMT) |
commit | 2c69336507d45cc28e27385d717df7115e56baa5 (patch) | |
tree | 1eaff55dadd5ebeef312f4636f1b61a1064eb31c | |
parent | 2dcfc9618dbf1cf467436c4a0ccbb2d7df2ba25f (diff) | |
download | cpython-2c69336507d45cc28e27385d717df7115e56baa5.zip cpython-2c69336507d45cc28e27385d717df7115e56baa5.tar.gz cpython-2c69336507d45cc28e27385d717df7115e56baa5.tar.bz2 |
On second though, NEXITFUNCS should be defined in pythonrun.c and not
here; pystate.h doesn't use it (I thought I wanted to move the array
there but that won't work).
-rw-r--r-- | Include/pystate.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index b061fbf..7218cc0 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -40,8 +40,6 @@ PERFORMANCE OF THIS SOFTWARE. /* State shared between threads */ -#define NEXITFUNCS 32 - struct _ts; /* Forward */ struct _is; /* Forward */ |