Commit 59f3ade8 authored by Robert Schuppenies's avatar Robert Schuppenies

Issue 3048: Fixed sys.sizeof test fails with wide unicode.

parent d0ba0732
......@@ -538,8 +538,7 @@ class SizeofTest(unittest.TestCase):
self.check_sizeof([], h + l + p + l)
self.check_sizeof([1, 2, 3], h + l + p + l + 3*l)
# unicode
import math
usize = math.log(sys.maxunicode + 1, 2) / 8
usize = len(u'\0'.encode('unicode-internal'))
samples = [u'', u'1'*100]
# we need to test for both sizes, because we don't know if the string
# has been cached
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment