Fred Drake | b8f2274 | 2001-09-04 19:10:20 +0000 | [diff] [blame] | 1 | """Minimal "re" compatibility wrapper""" |
| 2 | |
Fredrik Lundh | ef7bae6 | 2000-06-30 22:01:36 +0000 | [diff] [blame] | 3 | # 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 Rossum | 8c74335 | 2000-08-01 20:28:33 +0000 | [diff] [blame] | 7 | # http://sourceforge.net/bugs/?group_id=5470 |
Fredrik Lundh | ef7bae6 | 2000-06-30 22:01:36 +0000 | [diff] [blame] | 8 | # |
| 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 Rossum | 6ebb387 | 1999-07-09 21:15:32 +0000 | [diff] [blame] | 18 | |
Guido van Rossum | ad9eba7 | 2002-07-28 19:04:07 +0000 | [diff] [blame] | 19 | engine = "sre" # Some apps might use this undocumented variable |
| 20 | |
Andrew M. Kuchling | 7fd1c8c | 2002-04-10 21:15:40 +0000 | [diff] [blame] | 21 | from sre import * |
| 22 | from sre import __all__ |