diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-06-30 23:45:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 23:45:08 (GMT) |
commit | 46c1097868745eeb47abbc8af8c34e8fcb80ff1d (patch) | |
tree | 29749fa3f2b4c3364b8024de3decc25cd103fd34 /Lib/test/test_unparse.py | |
parent | 904aef994262383ae916545908f0578c2d53cf31 (diff) | |
download | cpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.zip cpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.tar.gz cpython-46c1097868745eeb47abbc8af8c34e8fcb80ff1d.tar.bz2 |
gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#106224)
Diffstat (limited to 'Lib/test/test_unparse.py')
-rw-r--r-- | Lib/test/test_unparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py index 41a6318..b3efb61 100644 --- a/Lib/test/test_unparse.py +++ b/Lib/test/test_unparse.py @@ -705,7 +705,7 @@ class DirectoryTestCase(ASTTestCase): test_directories = (lib_dir, lib_dir / "test") run_always_files = {"test_grammar.py", "test_syntax.py", "test_compile.py", "test_ast.py", "test_asdl_parser.py", "test_fstring.py", - "test_patma.py"} + "test_patma.py", "test_type_alias.py", "test_type_params.py"} _files_to_test = None |