0
0
mirror of https://github.com/python/cpython.git synced 2024-11-30 18:51:15 +01:00
cpython/Lib/re.py
2003-01-31 00:35:58 +00:00

7 lines
180 B
Python

"""Minimal "re" compatibility wrapper. See "sre" for documentation."""
engine = "sre" # Some apps might use this undocumented variable
from sre import *
from sre import __all__