mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +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'))
|
||||
# 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…
Add table
Add a link
Reference in a new issue