mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
- actually enabled charset anchors in the engine (still not
used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details.
This commit is contained in:
parent
b19948b7fb
commit
7cafe4d7e4
7 changed files with 95 additions and 20 deletions
|
|
@ -208,7 +208,7 @@ def _compile(code, pattern, flags):
|
|||
else:
|
||||
emit(OPCODES[op])
|
||||
emit(av-1)
|
||||
elif op is MARK:
|
||||
elif op in (MARK, INDEX):
|
||||
emit(OPCODES[op])
|
||||
emit(av)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue