mirror of https://github.com/python/cpython.git
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.
This commit is contained in:
parent
5f5153e871
commit
358d938aaa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue