From: Tim Peters Date: Tue, 26 Sep 2000 06:11:54 +0000 (+0000) Subject: More limits.h stuff in node.c. X-Git-Tag: v2.0b2~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d6a7297d356d8daf84e3b29e029d2fc4d5f949f;p=python More limits.h stuff in node.c. Fred, check this! --- 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 -#endif -#ifndef INT_MAX -#define INT_MAX 2147483647 -#endif - node * PyNode_New(int type) {