]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 15 Nov 2013 23:13:29 +0000 (00:13 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 15 Nov 2013 23:13:29 +0000 (00:13 +0100)
commitda062558db08e8374fa0880bf93f16896da0720e
tree6b136691e1931079a2461bbc4d05cf854037a267
parent0c083461a576bf27fdb18d3cf744d3ae0b920dbd
Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned
char, n is in range [0; 255] (a tuple cannot have a negative length)
Python/marshal.c