Staging
v0.8.1
https://github.com/python/cpython
Revision 2556c8388c950cd5d41d57251c1471c7bed3bb4b authored by Serhiy Storchaka on 14 March 2013, 18:59:09 UTC, committed by Serhiy Storchaka on 14 March 2013, 18:59:09 UTC
1 parent 69c66f9
Raw File
Tip revision: 2556c8388c950cd5d41d57251c1471c7bed3bb4b authored by Serhiy Storchaka on 14 March 2013, 18:59:09 UTC
Issue #17299: Add test coverage for cPickle with file objects and general IO
Tip revision: 2556c83
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