From: Guido van Rossum Date: Thu, 14 Aug 1997 21:23:07 +0000 (+0000) Subject: OK, reop is safe again. X-Git-Tag: v1.5a3~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4d6c4d950b955489bbf556c17e30178cafa20a9;p=thirdparty%2FPython%2Fcpython.git OK, reop is safe again. --- diff --git a/Lib/re.py b/Lib/re.py index 5c8827aa22e7..d1df766500a6 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -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