diff options
author | Mark Shannon <mark@hotpy.org> | 2021-07-12 09:01:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 09:01:01 (GMT) |
commit | 9487a17e3c7cbb3f11c144775cd108601701bb74 (patch) | |
tree | 3af7fb75c34c11b815e7f3c26dfef412921273dc /Lib/test/test_sys.py | |
parent | e14d5ae5447ae28fc4828a9cee8e9007f9c30700 (diff) | |
download | cpython-9487a17e3c7cbb3f11c144775cd108601701bb74.zip cpython-9487a17e3c7cbb3f11c144775cd108601701bb74.tar.gz cpython-9487a17e3c7cbb3f11c144775cd108601701bb74.tar.bz2 |
bpo-44207: Add an internal version number to function objects. (GH-27078)
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index a549d44..7d9a36a 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1278,7 +1278,7 @@ class SizeofTest(unittest.TestCase): check(x, size('4P3i4cP')) # function def func(): pass - check(func, size('14P')) + check(func, size('14Pi')) class c(): @staticmethod def foo(): |