Staging
v0.8.1
Revision 3bd3315e492ada408b47f7eabec2054ed7c10fa0 authored by Thomas Heller on 04 April 2006, 18:41:13 UTC, committed by Thomas Heller on 04 April 2006, 18:41:13 UTC
This file is used by test_startfile.py.
1 parent 19fd857
Raw File
sre.py
"""This file is only retained for backwards compatibility.
It will be removed in the future.  sre was moved to re in version 2.5.
"""

import warnings
warnings.warn("The sre module is deprecated, please import re.",
              DeprecationWarning, 2)

from re import *
from re import __all__
back to top