Staging
v0.5.1
https://github.com/python/cpython
Revision 6cdcdbcdaad14351d392888403419f5a3204b1a3 authored by Georg Brandl on 13 March 2007, 10:07:01 UTC, committed by Georg Brandl on 13 March 2007, 10:07:01 UTC
pydoc's help keywords.
 (backport from rev. 54329)
1 parent 0a24d10
Raw File
Tip revision: 6cdcdbcdaad14351d392888403419f5a3204b1a3 authored by Georg Brandl on 13 March 2007, 10:07:01 UTC
Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" to
Tip revision: 6cdcdbc
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__
back to top