]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix a compilater warning on Windows 64-bit
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 16 May 2013 21:48:01 +0000 (23:48 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 16 May 2013 21:48:01 +0000 (23:48 +0200)
commitd3dfd0e433241de76d4f3f4dba4d8ef59f09e61d
tree2b6473564dd3c3a825871f17d4d20ab768170b80
parent3a8f510b52b5287b2cba2b720f657073b8ffc719
Fix a compilater warning on Windows 64-bit

idx variable is used for a tuple indexn so use Py_ssize_t (not int).
Python/ceval.c