Staging
v0.8.1
https://github.com/python/cpython
Revision cd37dd8e05620ef5ee0277f30654878d71562661 authored by Ezio Melotti on 03 August 2010, 07:03:40 UTC, committed by Ezio Melotti on 03 August 2010, 07:03:40 UTC
1 parent 670048d
Raw File
Tip revision: cd37dd8e05620ef5ee0277f30654878d71562661 authored by Ezio Melotti on 03 August 2010, 07:03:40 UTC
Fix deprecation warnings in test_hotshot.py
Tip revision: cd37dd8
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__

# old pickles expect the _compile() reconstructor in this module
from re import _compile
back to top