Staging
v0.5.1
Revision 6a507a104d3a47217b3df66148d7edf40f0e2a0f authored by Andrew M. Kuchling on 31 August 2004, 13:42:11 UTC, committed by Andrew M. Kuchling on 31 August 2004, 13:42:11 UTC
1 parent a7313d0
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