mirror of
https://github.com/python/cpython.git
synced 2025-08-27 20:25:18 +00:00
bpo-45975: IDLE - Remove extraneous parens (GH-31107)
mistakenly included in 3 files in previous PR
and backported both to 3.10 and 3.9.
(cherry picked from commit 916d0d822c
)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
parent
e8258608c2
commit
cf7cb1a2bf
3 changed files with 4 additions and 4 deletions
|
@ -179,7 +179,7 @@ class Parser:
|
|||
# Peeking back worked; look forward until _synchre no longer
|
||||
# matches.
|
||||
i = pos + 1
|
||||
while (m := _synchre(code, i)):
|
||||
while m := _synchre(code, i):
|
||||
s, i = m.span()
|
||||
if not is_char_in_string(s):
|
||||
pos = s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue