[Python-3000-checkins] r66480 - python/branches/py3k/Lib/test/test_sys.py

robert.schuppenies python-3000-checkins at python.org
Tue Sep 16 09:21:02 CEST 2008


Author: robert.schuppenies
Date: Tue Sep 16 09:21:01 2008
New Revision: 66480

Log:
Issue #3859: Fixed test_sys.Sizeof failure on win64.

Reviewed by Benjamin Peterson.


Modified:
   python/branches/py3k/Lib/test/test_sys.py

Modified: python/branches/py3k/Lib/test/test_sys.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sys.py	(original)
+++ python/branches/py3k/Lib/test/test_sys.py	Tue Sep 16 09:21:01 2008
@@ -580,7 +580,7 @@
         check(reversed(''), size(h + 'PP'))
         # range
         check(range(1), size(h + '3P'))
-        check(range(66000), size(h + '3l'))
+        check(range(66000), size(h + '3P'))
         # set
         # frozenset
         PySet_MINSIZE = 8


More information about the Python-3000-checkins mailing list