summaryrefslogtreecommitdiff
path: root/Parser/node.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-09-26 06:11:54 +0000
committerTim Peters <tim.peters@gmail.com>2000-09-26 06:11:54 +0000
commit1d6a7297d356d8daf84e3b29e029d2fc4d5f949f (patch)
tree1022bd0ef3e7bc7053fca358a2e75f637046b247 /Parser/node.c
parent0b71ceaeff8af6e69e1c049de751edad70f9b632 (diff)
downloadcpython-git-1d6a7297d356d8daf84e3b29e029d2fc4d5f949f.tar.gz
More limits.h stuff in node.c.
Fred, check this!
Diffstat (limited to 'Parser/node.c')
-rw-r--r--Parser/node.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/Parser/node.c b/Parser/node.c
index 25edc8bed0..b1036a3319 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)
{