diff options
author | Guido van Rossum <guido@python.org> | 2000-08-01 21:22:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-08-01 21:22:16 (GMT) |
commit | fb06539e999271ea9b07b754d461f2172d65978b (patch) | |
tree | ee2ee7daf3eb87863c27031311ff8e6844952ccf /Lib/re.py | |
parent | 2f2c67d7e5934bdf96835f3c4774388b3e654314 (diff) | |
download | cpython-fb06539e999271ea9b07b754d461f2172d65978b.zip cpython-fb06539e999271ea9b07b754d461f2172d65978b.tar.gz cpython-fb06539e999271ea9b07b754d461f2172d65978b.tar.bz2 |
My fix to the URL accidentally also switched back to the "pre" module.
Undo that!
Diffstat (limited to 'Lib/re.py')
-rw-r--r-- | Lib/re.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ # thanks /F # -# engine = "sre" -engine = "pre" +engine = "sre" +# engine = "pre" if engine == "sre": # New unicode-aware engine |