diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 21:23:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 21:23:07 (GMT) |
commit | c4d6c4d950b955489bbf556c17e30178cafa20a9 (patch) | |
tree | adbc77db8fbe4f8da603c73808e6c167956fb6e9 /Lib/re.py | |
parent | f1c018de8771542b74cd7f95cdc01977182c7f51 (diff) | |
download | cpython-c4d6c4d950b955489bbf556c17e30178cafa20a9.zip cpython-c4d6c4d950b955489bbf556c17e30178cafa20a9.tar.gz cpython-c4d6c4d950b955489bbf556c17e30178cafa20a9.tar.bz2 |
OK, reop is safe again.
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 |