From: Neal Norwitz Date: Fri, 21 Oct 2005 04:33:02 +0000 (+0000) Subject: Remove INT_MIN that came from the AST merge. X-Git-Tag: v2.5a0~1270 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=358d938aaa5320385d1a1f2e5a9d1fc82f8cf9c2;p=python Remove INT_MIN that came from the AST merge. INT_MIN is used in Python/compile.c, but it was also used in Objects/abstract.c Python/getargs.c. If we need it for compile.c, we can get it from the same place as the other files. --- diff --git a/Include/pyport.h b/Include/pyport.h index ea2091b9cb..2440c55f7a 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -583,7 +583,6 @@ typedef struct fd_set { #ifndef INT_MAX #define INT_MAX 2147483647 -#define INT_MIN (-INT_MAX - 1) #endif #ifndef LONG_MAX