]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 19 Nov 2013 21:23:20 +0000 (22:23 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 19 Nov 2013 21:23:20 +0000 (22:23 +0100)
commitad9a066050ff4cf7863b9ed4dc24e284a077c1de
treece5d159a887b84c8e00f2dad88a0f1aeeef75c62
parent1540b16ff424fe1d6ec0a94ef83a76b3df31d0eb
Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix
compiler warnings on Windows 64-bit. Use Py_SAFE_DOWNCAST() where the final
downcast is needed.

The bytecode doesn't support integer parameters larger than 32-bit yet.
Python/compile.c