]> granicus.if.org Git - python/commit
Fix warnings about using char as an array subscript. This is not portable
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 27 Mar 2008 04:40:50 +0000 (04:40 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 27 Mar 2008 04:40:50 +0000 (04:40 +0000)
commit231346e23f3bcb5102199712b998ca7f2354dfdd
treeca7e91d10be40e42c27fe1ca924130d127980a73
parent4ebd46a02d7ab56b1398d7e5393dd32dc26becac
Fix warnings about using char as an array subscript.  This is not portable
since char is signed on some platforms and unsigned on others.
Include/bytes_methods.h
Objects/longobject.c
Objects/unicodeobject.c
Python/mystrtoul.c