summaryrefslogtreecommitdiffstats
path: root/Lib/re.py
blob: efc1ded108389f43f365db8ae4e42e452da75319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""Minimal "re" compatibility wrapper"""

# To help us fix any remaining bugs in the new engine, please
# report what went wrong.  You can either use the following web
# page:
#
#    http://sourceforge.net/bugs/?group_id=5470
#
# or send a mail to SRE's author:
#
#    Fredrik Lundh <effbot@telia.com>
#
# Make sure to include the pattern, the string SRE failed to
# match, and what result you expected.
#
# thanks /F
#

engine = "sre" # Some apps might use this undocumented variable

from sre import *
from sre import __all__