Staging
v0.5.1
Revision aa13a29fde14be3982064cd7597990a9afcfd821 authored by Tarek Ziadé on 09 September 2009, 08:34:06 UTC, committed by Tarek Ziadé on 09 September 2009, 08:34:06 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74728 | tarek.ziade | 2009-09-09 10:14:20 +0200 (Wed, 09 Sep 2009) | 1 line

  Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler
........
1 parent 6acb41b
Raw File
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