Staging
v0.5.1
https://github.com/python/cpython
Revision 3c134a20465d6fe37ab8210d4bb35716a5dcfff7 authored by George Yoshida on 22 April 2006, 15:10:49 UTC, committed by George Yoshida on 22 April 2006, 15:10:49 UTC
1 parent 6685128
Raw File
Tip revision: 3c134a20465d6fe37ab8210d4bb35716a5dcfff7 authored by George Yoshida on 22 April 2006, 15:10:49 UTC
Typo fixes
Tip revision: 3c134a2
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