mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
gh-115931: Fix SyntaxWarnings in test_unparse (#115935)
This commit is contained in:
parent
37f5d06b1b
commit
b7383b8b71
1 changed files with 11 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue