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

Reviewed by Benjamin Peterson.
This commit is contained in:
Robert Schuppenies 2008-09-16 07:21:01 +00:00
parent 9d0ced3689
commit 357877c8f1
1 changed files with 1 additions and 1 deletions

View File

@ -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