diff options
author | Eric V. Smith <eric@trueblade.com> | 2016-09-03 13:18:34 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2016-09-03 13:18:34 (GMT) |
commit | 6a4efce7a50f1339dd67f892cc8746f5c1047ada (patch) | |
tree | df1a4793f118436be8c701762579f7c716d1d2af /Lib/test/test_tools | |
parent | 3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f (diff) | |
download | cpython-6a4efce7a50f1339dd67f892cc8746f5c1047ada.zip cpython-6a4efce7a50f1339dd67f892cc8746f5c1047ada.tar.gz cpython-6a4efce7a50f1339dd67f892cc8746f5c1047ada.tar.bz2 |
Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts.
Diffstat (limited to 'Lib/test/test_tools')
-rw-r--r-- | Lib/test/test_tools/test_unparse.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_tools/test_unparse.py b/Lib/test/test_tools/test_unparse.py index d91ade9..4a903b6 100644 --- a/Lib/test/test_tools/test_unparse.py +++ b/Lib/test/test_tools/test_unparse.py @@ -138,10 +138,6 @@ class UnparseTestCase(ASTTestCase): # See issue 25180 self.check_roundtrip(r"""f'{f"{0}"*3}'""") self.check_roundtrip(r"""f'{f"{y}"*3}'""") - self.check_roundtrip(r"""f'{f"{\'x\'}"*3}'""") - - self.check_roundtrip(r'''f"{r'x' f'{\"s\"}'}"''') - self.check_roundtrip(r'''f"{r'x'rf'{\"s\"}'}"''') def test_del_statement(self): self.check_roundtrip("del x, y, z") |