mirror of https://github.com/python/cpython
gh-115931: Fix `SyntaxWarning`s in `test_unparse` (#115935)
This commit is contained in:
parent
37f5d06b1b
commit
b7383b8b71
|
@ -650,9 +650,18 @@ class CosmeticTestCase(ASTTestCase):
|
|||
self.check_ast_roundtrip("""f'''""\"''\\'{""\"\\n\\"'''""\" '''\\n'''}''' """)
|
||||
|
||||
def test_backslash_in_format_spec(self):
|
||||
self.check_ast_roundtrip("""f"{x:\\ }" """)
|
||||
import re
|
||||
msg = re.escape("invalid escape sequence '\\ '")
|
||||
with self.assertWarnsRegex(SyntaxWarning, msg):
|
||||
self.check_ast_roundtrip("""f"{x:\\ }" """)
|
||||
self.check_ast_roundtrip("""f"{x:\\n}" """)
|
||||
|
||||
self.check_ast_roundtrip("""f"{x:\\\\ }" """)
|
||||
self.check_ast_roundtrip("""f"{x:\\\\\\ }" """)
|
||||
|
||||
with self.assertWarnsRegex(SyntaxWarning, msg):
|
||||
self.check_ast_roundtrip("""f"{x:\\\\\\ }" """)
|
||||
self.check_ast_roundtrip("""f"{x:\\\\\\n}" """)
|
||||
|
||||
self.check_ast_roundtrip("""f"{x:\\\\\\\\ }" """)
|
||||
|
||||
def test_quote_in_format_spec(self):
|
||||
|
|
Loading…
Reference in New Issue