mirror of
https://github.com/python/cpython.git
synced 2025-07-15 15:25:29 +00:00
the mad patcher strikes again:
-- added pickling support (only works if sre is imported) -- fixed wordsize problems in engine (instead of casting literals down to the character size, cast characters up to the literal size (same as the code word size). this prevents false hits when you're matching a unicode pattern against an 8-bit string. (unfortunately, this broke another test, but I think the test should be changed in this case; more on that on python-dev) -- added sre.purge function (unofficial, clears the cache)
This commit is contained in:
parent
ae1b5b2e98
commit
0640e1161f
5 changed files with 73 additions and 66 deletions
|
@ -31,15 +31,15 @@ def _compile(code, pattern, flags):
|
|||
emit(OPCODES[OP_IGNORE[op]])
|
||||
else:
|
||||
emit(OPCODES[op])
|
||||
emit(ord(av))
|
||||
emit(av)
|
||||
elif op is IN:
|
||||
if flags & SRE_FLAG_IGNORECASE:
|
||||
emit(OPCODES[OP_IGNORE[op]])
|
||||
def fixup(literal, flags=flags):
|
||||
return _sre.getlower(ord(literal), flags)
|
||||
return _sre.getlower(literal, flags)
|
||||
else:
|
||||
emit(OPCODES[op])
|
||||
fixup = ord
|
||||
fixup = lambda x: x
|
||||
skip = len(code); emit(0)
|
||||
for op, av in av:
|
||||
emit(OPCODES[op])
|
||||
|
@ -165,7 +165,7 @@ def _compile_info(code, pattern, flags):
|
|||
if not (flags & SRE_FLAG_IGNORECASE):
|
||||
for op, av in pattern.data:
|
||||
if op is LITERAL:
|
||||
prefix.append(ord(av))
|
||||
prefix.append(av)
|
||||
else:
|
||||
break
|
||||
# add an info block
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue