diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-06-18 20:27:10 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-06-18 20:27:10 (GMT) |
commit | e8d52af54bb90459d941ecdd683bc8416bc47b48 (patch) | |
tree | a8d60446bdf499c157d4110a708de0d3625d954f /Lib/sre.py | |
parent | ea34a84e543ecf0a05ea34fe5b7d84cb1bcd437d (diff) | |
download | cpython-e8d52af54bb90459d941ecdd683bc8416bc47b48.zip cpython-e8d52af54bb90459d941ecdd683bc8416bc47b48.tar.gz cpython-e8d52af54bb90459d941ecdd683bc8416bc47b48.tar.bz2 |
Fix bug when the replacement template is a callable object
Diffstat (limited to 'Lib/sre.py')
-rw-r--r-- | Lib/sre.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |