Staging
v0.5.1
https://github.com/python/cpython
Revision 0f51cf6e0473919d83da7ce3a7d23cd7d1ea0594 authored by Neal Norwitz on 18 June 2006, 20:10:24 UTC, committed by Neal Norwitz on 18 June 2006, 20:10:24 UTC
1 parent 10b835c
Raw File
Tip revision: 0f51cf6e0473919d83da7ce3a7d23cd7d1ea0594 authored by Neal Norwitz on 18 June 2006, 20:10:24 UTC
Revert 47014 until it is more robust
Tip revision: 0f51cf6
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