Staging
v0.8.1
Revision 5124b4a082552225f3c54fedb6836fbb1613e170 authored by Guido van Rossum on 06 July 2004, 17:52:32 UTC, committed by Guido van Rossum on 06 July 2004, 17:52:32 UTC
1 parent 7ff7d2c
Raw File
re.py
"""Minimal "re" compatibility wrapper.  See "sre" for documentation."""

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

from sre import *
from sre import __all__
back to top