From: Victor Stinner Date: Tue, 19 Nov 2013 21:28:01 +0000 (+0100) Subject: Issue #9566, #19617: Fix compilation on Windows X-Git-Tag: v3.4.0b1~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b679a2eb781091b497fabc8493d7ba33d57ebf41;p=thirdparty%2FPython%2Fcpython.git Issue #9566, #19617: Fix compilation on Windows INT32_MIN and INT32_MAX constants are unknown on Windows. --- diff --git a/Python/compile.c b/Python/compile.c index dde6dcff4bdc..2c8db4865111 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1183,8 +1183,8 @@ compiler_addop_i(struct compiler *c, Py_ssize_t opcode, Py_ssize_t oparg) /* Integer arguments are limit to 16-bit. There is an extension for 32-bit integer arguments. */ - assert(INT32_MIN <= opcode); - assert(opcode <= INT32_MAX); + assert(-2147483648 <= opcode); + assert(opcode <= 2147483647); off = compiler_next_instr(c, c->u->u_curblock); if (off < 0)