Staging
v0.8.1
https://github.com/python/cpython
Revision 59a61f6fcd0de12c2739404b0a1641bce4185170 authored by Fred Drake on 27 September 2003, 07:36:18 UTC, committed by Fred Drake on 27 September 2003, 07:36:18 UTC
1 parent 3bbb816
Raw File
Tip revision: 59a61f6fcd0de12c2739404b0a1641bce4185170 authored by Fred Drake on 27 September 2003, 07:36:18 UTC
Adjust the organization a bit and update some of the comments to
Tip revision: 59a61f6
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