summaryrefslogtreecommitdiff
path: root/Lib/sre.py
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2001-10-21 16:47:57 +0000
committerFredrik Lundh <fredrik@pythonware.com>2001-10-21 16:47:57 +0000
commitbec95b9d8825b39cff46a8c645fa0eeb8409854e (patch)
tree11a28a4cc7b744dc07c72c52a89655fbf3868330 /Lib/sre.py
parent5b68ce3122a7663ca027a3e17e21d5d5561d09d9 (diff)
downloadcpython-git-bec95b9d8825b39cff46a8c645fa0eeb8409854e.tar.gz
rewrote the pattern.sub and pattern.subn methods in C
removed (conceptually flawed) getliteral helper; the new sub/subn code uses a faster code path for literal replacement strings, but doesn't (yet) look for literal patterns. added STATE_OFFSET macro, and use it to convert state.start/ptr to char indexes
Diffstat (limited to 'Lib/sre.py')
-rw-r--r--Lib/sre.py42
1 files changed, 25 insertions, 17 deletions
diff --git a/Lib/sre.py b/Lib/sre.py
index 70d014803b..9c3f4b3ae0 100644
--- a/Lib/sre.py
+++ b/Lib/sre.py
@@ -104,7 +104,7 @@ __all__ = [ "match", "search", "sub", "subn", "split", "findall",
"U", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE",
"UNICODE", "error" ]
-__version__ = "2.2.0"
+__version__ = "2.2.1"
# this module works under 1.5.2 and later. don't use string methods
import string
@@ -244,26 +244,33 @@ def _expand(pattern, match, template):
template = sre_parse.parse_template(template, pattern)
return sre_parse.expand_template(template, match)
-def _sub(pattern, template, text, count=0):
- # internal: pattern.sub implementation hook
- return _subn(pattern, template, text, count, 1)[0]
-
-def _subn(pattern, template, text, count=0, sub=0):
- # internal: pattern.subn implementation hook
+def _subx(pattern, template):
+ # internal: pattern.sub/subn implementation helper
if callable(template):
filter = template
else:
template = _compile_repl(template, pattern)
- literals = template[1]
- if sub and not count:
- literal = pattern._getliteral()
- if literal and "\\" in literal:
- literal = None # may contain untranslated escapes
- if literal is not None and len(literals) == 1 and literals[0]:
- # shortcut: both pattern and string are literals
- return string.replace(text, pattern.pattern, literals[0]), 0
- def filter(match, template=template):
- return sre_parse.expand_template(template, match)
+ if not template[0] and len(template[1]) == 1:
+ # literal replacement
+ filter = template[1][0]
+ else:
+ def filter(match, template=template):
+ return sre_parse.expand_template(template, match)
+ return filter
+
+def _sub(pattern, template, text, count=0):
+ # internal: pattern.sub implementation hook
+ # FIXME: not used in SRE 2.2.1 and later; will be removed soon
+ return _subn(pattern, template, text, count)[0]
+
+def _subn(pattern, template, text, count=0):
+ # internal: pattern.subn implementation hook
+ # FIXME: not used in SRE 2.2.1 and later; will be removed soon
+ filter = _subx(pattern, template)
+ if not callable(filter):
+ # literal replacement
+ def filter(match, literal=filter):
+ return literal
n = i = 0
s = []
append = s.append
@@ -286,6 +293,7 @@ def _subn(pattern, template, text, count=0, sub=0):
def _split(pattern, text, maxsplit=0):
# internal: pattern.split implementation hook
+ # FIXME: not used in SRE 2.2.1 and later; will be removed soon
n = i = 0
s = []
append = s.append