diff options
| author | Mark Shannon <mark@hotpy.org> | 2020-11-12 09:43:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-12 09:43:29 +0000 |
| commit | 877df851c3ecdb55306840e247596e7b7805a60a (patch) | |
| tree | ec00c0af84f9f228d78e23e8c8b38201129f8fae /Lib/test/test_code.py | |
| parent | cda99b4022daa08ac74b0420e9903cce883d91c6 (diff) | |
| download | cpython-git-877df851c3ecdb55306840e247596e7b7805a60a.tar.gz | |
bpo-42246: Partial implementation of PEP 626. (GH-23113)
* Implement new line number table format, as defined in PEP 626.
Diffstat (limited to 'Lib/test/test_code.py')
| -rw-r--r-- | Lib/test/test_code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_code.py b/Lib/test/test_code.py index ac3dde7456..467e8e5e33 100644 --- a/Lib/test/test_code.py +++ b/Lib/test/test_code.py @@ -258,7 +258,7 @@ class CodeTest(unittest.TestCase): ("co_cellvars", ("cellvar",)), ("co_filename", "newfilename"), ("co_name", "newname"), - ("co_lnotab", code2.co_lnotab), + ("co_linetable", code2.co_linetable), ): with self.subTest(attr=attr, value=value): new_code = code.replace(**{attr: value}) |
