summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorRobert Schuppenies <okkotonushi@googlemail.com>2008-09-16 07:21:01 (GMT)
committerRobert Schuppenies <okkotonushi@googlemail.com>2008-09-16 07:21:01 (GMT)
commit357877c8f14f361166b1909bf93a40650d3f5b4c (patch)
tree622fa68e879049f822ca1c908f54848bed59b077 /Lib/test/test_sys.py
parent9d0ced368936c87d8b36c3aaf0042530b55ae0b7 (diff)
downloadcpython-357877c8f14f361166b1909bf93a40650d3f5b4c.zip
cpython-357877c8f14f361166b1909bf93a40650d3f5b4c.tar.gz
cpython-357877c8f14f361166b1909bf93a40650d3f5b4c.tar.bz2
Issue #3859: Fixed test_sys.Sizeof failure on win64.
Reviewed by Benjamin Peterson.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 2b9a5d5..b5b5077 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -580,7 +580,7 @@ class SizeofTest(unittest.TestCase):
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