diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-05-25 21:47:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-05-25 21:47:29 (GMT) |
commit | 80bc00f582470536508f71ce1e08cc5bdb57e556 (patch) | |
tree | ecb160397489f40a4645f99f5177d94a9201bd3e /Lib/test/test_sys.py | |
parent | 4b4e38e7d4bd62f2b1cae187ff51428846b720b5 (diff) | |
download | cpython-80bc00f582470536508f71ce1e08cc5bdb57e556.zip cpython-80bc00f582470536508f71ce1e08cc5bdb57e556.tar.gz cpython-80bc00f582470536508f71ce1e08cc5bdb57e556.tar.bz2 |
Issue #18063: fix some struct specifications in the tests for sys.getsizeof().
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r-- | Lib/test/test_sys.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 77d333d..9d97c8d 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -703,13 +703,13 @@ class SizeofTest(unittest.TestCase): class C(object): pass check(C.__dict__, size('P')) # BaseException - check(BaseException(), size('5Pi')) + check(BaseException(), size('5Pb')) # UnicodeEncodeError - check(UnicodeEncodeError("", "", 0, 0, ""), size('5Pi 2P2nP')) + check(UnicodeEncodeError("", "", 0, 0, ""), size('5Pb 2P2nP')) # UnicodeDecodeError - check(UnicodeDecodeError("", b"", 0, 0, ""), size('5Pi 2P2nP')) + check(UnicodeDecodeError("", b"", 0, 0, ""), size('5Pb 2P2nP')) # UnicodeTranslateError - check(UnicodeTranslateError("", 0, 1, ""), size('5Pi 2P2nP')) + check(UnicodeTranslateError("", 0, 1, ""), size('5Pb 2P2nP')) # ellipses check(Ellipsis, size('')) # EncodingMap @@ -851,7 +851,7 @@ class SizeofTest(unittest.TestCase): samples = ['1'*100, '\xff'*50, '\u0100'*40, '\uffff'*100, '\U00010000'*30, '\U0010ffff'*100] - asciifields = "nniP" + asciifields = "nnbP" compactfields = asciifields + "nPn" unicodefields = compactfields + "P" for s in samples: |