Discussion:
[Python-3000-checkins] r66480 - python/branches/py3k/Lib/test/test_sys.py
robert.schuppenies
2008-09-16 07:21:02 UTC
Permalink
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

Loading...