summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unparse.py
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2023-10-05 13:26:44 (GMT)
committerGitHub <noreply@github.com>2023-10-05 13:26:44 (GMT)
commitcc389ef627b2a486ab89d9a11245bef48224efb1 (patch)
treef6d4d943438d07fc3d37b905a921cd3f3fd2c3d0 /Lib/test/test_unparse.py
parentaf29282fce117cb10f00907fd46d56c2fa6142f5 (diff)
downloadcpython-cc389ef627b2a486ab89d9a11245bef48224efb1.zip
cpython-cc389ef627b2a486ab89d9a11245bef48224efb1.tar.gz
cpython-cc389ef627b2a486ab89d9a11245bef48224efb1.tar.bz2
gh-110259: Fix f-strings with multiline expressions and format specs (#110271)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'Lib/test/test_unparse.py')
-rw-r--r--Lib/test/test_unparse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py
index bdf7b05..6f698a8 100644
--- a/Lib/test/test_unparse.py
+++ b/Lib/test/test_unparse.py
@@ -730,7 +730,8 @@ 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_type_alias.py", "test_type_params.py"}
+ "test_patma.py", "test_type_alias.py", "test_type_params.py",
+ "test_tokenize.py"}
_files_to_test = None