Staging
v0.5.1
https://github.com/python/cpython
Revision 12cb99b33ffca180ec8ea2efcad0289d3cf11eca authored by Jack Jansen on 22 July 2003, 14:31:34 UTC, committed by Jack Jansen on 22 July 2003, 14:31:34 UTC
1 parent f753816
Raw File
Tip revision: 12cb99b33ffca180ec8ea2efcad0289d3cf11eca authored by Jack Jansen on 22 July 2003, 14:31:34 UTC
Various tweaks to make the packages work better. Still not 100%, though.
Tip revision: 12cb99b
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