diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 19:33:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 19:33:06 (GMT) |
commit | 257c772afa48301bc4c55b2bf5e2f5f9cec6e3c8 (patch) | |
tree | df54ff495478227a937a6b8153d36cc9de8f2e91 /Lib/re.py | |
parent | 0318bd6ae6f14ba04345b768e76fca3c6c1a67ab (diff) | |
download | cpython-257c772afa48301bc4c55b2bf5e2f5f9cec6e3c8.zip cpython-257c772afa48301bc4c55b2bf5e2f5f9cec6e3c8.tar.gz cpython-257c772afa48301bc4c55b2bf5e2f5f9cec6e3c8.tar.bz2 |
Comment out use of reop.expand_escape and reop._expand until their
bugginess has been fixed.
Diffstat (limited to 'Lib/re.py')
-rw-r--r-- | Lib/re.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1504,5 +1504,5 @@ def compile(pattern, flags=0): # Replace expand_escape and _expand functions with their C equivalents. # If you suspect bugs in the C versions, comment out the next two lines -expand_escape = reop.expand_escape -_expand = reop._expand +##expand_escape = reop.expand_escape +##_expand = reop._expand |