summaryrefslogtreecommitdiff
path: root/Lib/sre.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-06-18 20:27:10 +0000
committerAndrew M. Kuchling <amk@amk.ca>2000-06-18 20:27:10 +0000
commite8d52af54bb90459d941ecdd683bc8416bc47b48 (patch)
treea8d60446bdf499c157d4110a708de0d3625d954f /Lib/sre.py
parentea34a84e543ecf0a05ea34fe5b7d84cb1bcd437d (diff)
downloadcpython-git-e8d52af54bb90459d941ecdd683bc8416bc47b48.tar.gz
Fix bug when the replacement template is a callable object
Diffstat (limited to 'Lib/sre.py')
-rw-r--r--Lib/sre.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre.py b/Lib/sre.py
index 455cd2785e..637b776b2e 100644
--- a/Lib/sre.py
+++ b/Lib/sre.py
@@ -90,7 +90,7 @@ def _expand(match, template):
def _subn(pattern, template, string, count=0):
# internal: pattern.subn implementation hook
if callable(template):
- filter = callable
+ filter = template
else:
# FIXME: prepare template
def filter(match, template=template):