[jsinterp] Fix dict comprehension for Py2.6

Resolves #31600
This commit is contained in:
dirkf 2023-02-19 13:47:49 +00:00
parent 2dd6c6edd8
commit 57802e632f
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class JSInterpreter(object):
if not expr:
return
# collections.Counter() is ~10% slower in both 2.7 and 3.9
counters = {k: 0 for k in _MATCHING_PARENS.values()}
counters = dict((k, 0) for k in _MATCHING_PARENS.values())
start, splits, pos, delim_len = 0, 0, 0, len(delim) - 1
in_quote, escaping, skipping = None, False, 0
after_op, in_regex_char_group, skip_re = True, False, 0