summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-10-21 04:33:02 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-10-21 04:33:02 (GMT)
commit358d938aaa5320385d1a1f2e5a9d1fc82f8cf9c2 (patch)
treed430f137ef51e7972a6636bf70d5cfa9204b98a2 /Include
parent5f5153e8717d0de661e8b402ab0fd6859ebd0e5d (diff)
downloadcpython-358d938aaa5320385d1a1f2e5a9d1fc82f8cf9c2.zip
cpython-358d938aaa5320385d1a1f2e5a9d1fc82f8cf9c2.tar.gz
cpython-358d938aaa5320385d1a1f2e5a9d1fc82f8cf9c2.tar.bz2
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.
Diffstat (limited to 'Include')
-rw-r--r--Include/pyport.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index ea2091b..2440c55 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