Staging
v0.5.1
https://github.com/python/cpython
Revision 7ab74358ee288c68d47fccfb02d29d3e0fe27195 authored by Ronald Oussoren on 08 September 2009, 07:10:07 UTC, committed by Ronald Oussoren on 08 September 2009, 07:10:07 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74701 | ronald.oussoren | 2009-09-07 08:12:00 +0200 (Mon, 07 Sep 2009) | 2 lines

  Fix typo in configure.in
........
1 parent 85d41c8
Raw File
Tip revision: 7ab74358ee288c68d47fccfb02d29d3e0fe27195 authored by Ronald Oussoren on 08 September 2009, 07:10:07 UTC
Merged revisions 74701 via svnmerge from
Tip revision: 7ab7435
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