diff options
author | Robert Schuppenies <okkotonushi@googlemail.com> | 2008-09-16 07:21:01 (GMT) |
---|---|---|
committer | Robert Schuppenies <okkotonushi@googlemail.com> | 2008-09-16 07:21:01 (GMT) |
commit | 357877c8f14f361166b1909bf93a40650d3f5b4c (patch) | |
tree | 622fa68e879049f822ca1c908f54848bed59b077 /Lib/test/test_sys.py | |
parent | 9d0ced368936c87d8b36c3aaf0042530b55ae0b7 (diff) | |
download | cpython-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.py | 2 |
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 |