mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
INT32_MIN and INT32_MAX constants are unknown on Windows.
This commit is contained in:
parent
ad9a066050
commit
b679a2eb78
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue