blob: efc1ded108389f43f365db8ae4e42e452da75319 [file] [log] [blame]
Fred Drakeb8f22742001-09-04 19:10:20 +00001"""Minimal "re" compatibility wrapper"""
2
Fredrik Lundhef7bae62000-06-30 22:01:36 +00003# To help us fix any remaining bugs in the new engine, please
4# report what went wrong. You can either use the following web
5# page:
6#
Guido van Rossum8c743352000-08-01 20:28:33 +00007# http://sourceforge.net/bugs/?group_id=5470
Fredrik Lundhef7bae62000-06-30 22:01:36 +00008#
9# or send a mail to SRE's author:
10#
11# Fredrik Lundh <effbot@telia.com>
12#
13# Make sure to include the pattern, the string SRE failed to
14# match, and what result you expected.
15#
16# thanks /F
17#
Guido van Rossum6ebb3871999-07-09 21:15:32 +000018
Guido van Rossumad9eba72002-07-28 19:04:07 +000019engine = "sre" # Some apps might use this undocumented variable
20
Andrew M. Kuchling7fd1c8c2002-04-10 21:15:40 +000021from sre import *
22from sre import __all__