]> granicus.if.org Git - python/commit
Fix a bug discovered by Kalle Svensson: comparing sys.maxint to
authorGuido van Rossum <guido@python.org>
Sat, 29 Nov 2003 23:55:09 +0000 (23:55 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 29 Nov 2003 23:55:09 +0000 (23:55 +0000)
commit457bf91a7fb1ab628a94fe740450f137b4ee1b92
treea8765f9136140f1d67f9205e3166bf0989333e8d
parent6c9e130524533263b690e86639a36b6f3e7a8eeb
Fix a bug discovered by Kalle Svensson: comparing sys.maxint to
2**32-1 makes no sense.  Use 2**31-1 instead.
Lib/test/test_format.py