Staging
v0.8.1
https://github.com/python/cpython
Revision 360641c6e36d5a61e74f805b03b572a7beb41032 authored by Neal Norwitz on 08 March 2006, 06:39:50 UTC, committed by Neal Norwitz on 08 March 2006, 06:39:50 UTC
1 parent 5f2ad0b
Raw File
Tip revision: 360641c6e36d5a61e74f805b03b572a7beb41032 authored by Neal Norwitz on 08 March 2006, 06:39:50 UTC
Backport fixes reported by Coverity.
Tip revision: 360641c
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