summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-16 14:21:57 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-06-16 14:21:57 (GMT)
commit7db27c8ed67fdaa3052c29112d56a46b75f4c5dc (patch)
tree01751f654780cf17c092081c779b1d099138feaf /Lib/test/test_sys.py
parent40ee30181f7f7c71d6b49ceef35b5d3d20b88a6d (diff)
downloadcpython-7db27c8ed67fdaa3052c29112d56a46b75f4c5dc.zip
cpython-7db27c8ed67fdaa3052c29112d56a46b75f4c5dc.tar.gz
cpython-7db27c8ed67fdaa3052c29112d56a46b75f4c5dc.tar.bz2
Issue #21205: Fix unit tests
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 4eadd4b..854e786 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -885,7 +885,7 @@ class SizeofTest(unittest.TestCase):
check(bar, size('PP'))
# generator
def get_gen(): yield 1
- check(get_gen(), size('Pb2P'))
+ check(get_gen(), size('Pb2PPP'))
# iterator
check(iter('abc'), size('lP'))
# callable-iterator