mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
gh-100061: Proper fix of the bug in the matching of possessive quantifiers (GH-102612)
Restore the global Input Stream pointer after trying to match a sub-pattern. Co-authored-by: Ma Lin <animalize@users.noreply.github.com>
This commit is contained in:
parent
a86df298df
commit
abd9cc52d9
4 changed files with 17 additions and 10 deletions
|
@ -100,13 +100,6 @@ def _compile(code, pattern, flags):
|
|||
emit(ANY_ALL)
|
||||
else:
|
||||
emit(ANY)
|
||||
elif op is POSSESSIVE_REPEAT:
|
||||
# gh-106052: Possessive quantifiers do not work when the
|
||||
# subpattern contains backtracking, i.e. "(?:ab?c)*+".
|
||||
# Implement it as equivalent greedy qualifier in atomic group.
|
||||
p = [(MAX_REPEAT, av)]
|
||||
p = [(ATOMIC_GROUP, p)]
|
||||
_compile(code, p, flags)
|
||||
elif op in REPEATING_CODES:
|
||||
if _simple(av[2]):
|
||||
emit(REPEATING_CODES[op][2])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue