From: Guido van Rossum Date: Thu, 14 Aug 1997 19:33:06 +0000 (+0000) Subject: Comment out use of reop.expand_escape and reop._expand until their X-Git-Tag: v1.5a3~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=257c772afa48301bc4c55b2bf5e2f5f9cec6e3c8;p=python Comment out use of reop.expand_escape and reop._expand until their bugginess has been fixed. --- diff --git a/Lib/re.py b/Lib/re.py index d1df766500..5c8827aa22 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