diff options
author | Carl Meyer <carl@oddbird.net> | 2022-10-21 07:41:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 14:41:51 +0100 |
commit | 82ccbf69a842db25d8117f1c41b47aa5b4ed96ab (patch) | |
tree | 3a8bdfc3eb837106664433c2e385276fccf64c06 /Lib/test/test_sys.py | |
parent | 8367ca136ed7616cb1f71bd9f1ec98dbcfd35d98 (diff) | |
download | cpython-git-82ccbf69a842db25d8117f1c41b47aa5b4ed96ab.tar.gz |
gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)
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 4148273487..9184e9a42f 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1521,7 +1521,7 @@ class SizeofTest(unittest.TestCase): check((1,2,3), vsize('') + 3*self.P) # type # static type: PyTypeObject - fmt = 'P2nPI13Pl4Pn9Pn12PIP' + fmt = 'P2nPI13Pl4Pn9Pn12PIPc' s = vsize('2P' + fmt) check(int, s) # class |