Staging
v0.5.1
https://github.com/python/cpython
Revision 36b7361fe76733b3a4944ef92b49bcea4584b740 authored by Ezio Melotti on 21 February 2012, 07:22:16 UTC, committed by Ezio Melotti on 21 February 2012, 07:22:16 UTC
1 parent 9be6c3d
Raw File
Tip revision: 36b7361fe76733b3a4944ef92b49bcea4584b740 authored by Ezio Melotti on 21 February 2012, 07:22:16 UTC
HTMLParser is now able to handle slashes in the start tag.
Tip revision: 36b7361
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