summaryrefslogtreecommitdiffstats
path: root/Lib/re.py
blob: a51174b8ca0fbf390ebc16408c4ce6562e34a18c (plain)
1
2
3
4
5
6
7
8
9
10
11
# change this to "pre" if your regexps stopped working.  don't
# forget to send a bug report to <some suitable address>

engine = "sre"

if engine == "sre":
    # new 2.0 engine
    from sre import *
else:
    # old 1.5.2 engine.  will be removed in 2.0 final.
    from pre import *