2001-09-04 16:10:20 -03:00
|
|
|
"""Minimal "re" compatibility wrapper"""
|
|
|
|
|
2000-06-30 19:01:36 -03:00
|
|
|
# To help us fix any remaining bugs in the new engine, please
|
|
|
|
# report what went wrong. You can either use the following web
|
|
|
|
# page:
|
|
|
|
#
|
2000-08-01 17:28:33 -03:00
|
|
|
# http://sourceforge.net/bugs/?group_id=5470
|
2000-06-30 19:01:36 -03:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
1999-07-09 18:15:32 -03:00
|
|
|
|
2002-07-28 16:04:07 -03:00
|
|
|
engine = "sre" # Some apps might use this undocumented variable
|
|
|
|
|
2002-04-10 18:15:40 -03:00
|
|
|
from sre import *
|
|
|
|
from sre import __all__
|