diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-26 06:11:54 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-26 06:11:54 (GMT) |
commit | 1d6a7297d356d8daf84e3b29e029d2fc4d5f949f (patch) | |
tree | 1022bd0ef3e7bc7053fca358a2e75f637046b247 /Parser/node.c | |
parent | 0b71ceaeff8af6e69e1c049de751edad70f9b632 (diff) | |
download | cpython-1d6a7297d356d8daf84e3b29e029d2fc4d5f949f.zip cpython-1d6a7297d356d8daf84e3b29e029d2fc4d5f949f.tar.gz cpython-1d6a7297d356d8daf84e3b29e029d2fc4d5f949f.tar.bz2 |
More limits.h stuff in node.c.
Fred, check this!
Diffstat (limited to 'Parser/node.c')
-rw-r--r-- | Parser/node.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Parser/node.c b/Parser/node.c index 25edc8b..b1036a3 100644 --- a/Parser/node.c +++ b/Parser/node.c @@ -1,17 +1,9 @@ - /* Parse tree node implementation */ -#include "pgenheaders.h" +#include "Python.h" #include "node.h" #include "errcode.h" -#ifdef HAVE_LIMITS_H -#include <limits.h> -#endif -#ifndef INT_MAX -#define INT_MAX 2147483647 -#endif - node * PyNode_New(int type) { |