mirror of
https://github.com/python/cpython.git
synced 2025-08-09 11:29:45 +00:00
[3.12] gh-113703: Correctly identify incomplete f-strings in the codeop module (GH-113709) (#113733)
(cherry picked from commit 3003fbbf00
)
This commit is contained in:
parent
8435fbfe4e
commit
0affc3d0f0
3 changed files with 12 additions and 3 deletions
|
@ -223,6 +223,9 @@ class CodeopTests(unittest.TestCase):
|
|||
ai("(x for x in")
|
||||
ai("(x for x in (")
|
||||
|
||||
ai('a = f"""')
|
||||
ai('a = \\')
|
||||
|
||||
def test_invalid(self):
|
||||
ai = self.assertInvalid
|
||||
ai("a b")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue