mirror of
https://github.com/python/cpython.git
synced 2025-09-09 18:32:22 +00:00
Issue #3859: Fixed test_sys.Sizeof failure on win64.
Reviewed by Benjamin Peterson.
This commit is contained in:
parent
9d0ced3689
commit
357877c8f1
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ class SizeofTest(unittest.TestCase):
|
||||||
check(reversed(''), size(h + 'PP'))
|
check(reversed(''), size(h + 'PP'))
|
||||||
# range
|
# range
|
||||||
check(range(1), size(h + '3P'))
|
check(range(1), size(h + '3P'))
|
||||||
check(range(66000), size(h + '3l'))
|
check(range(66000), size(h + '3P'))
|
||||||
# set
|
# set
|
||||||
# frozenset
|
# frozenset
|
||||||
PySet_MINSIZE = 8
|
PySet_MINSIZE = 8
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue