Staging
v0.5.1
https://github.com/python/cpython
Revision 5ecad9ca13405d0cc4c2653435887a62e54bb673 authored by Martin v. Löwis on 17 June 2006, 09:20:41 UTC, committed by Martin v. Löwis on 17 June 2006, 09:20:41 UTC
1 parent 337487e
Raw File
Tip revision: 5ecad9ca13405d0cc4c2653435887a62e54bb673 authored by Martin v. Löwis on 17 June 2006, 09:20:41 UTC
Patch #1096231: Add default argument to wm_iconbitmap.
Tip revision: 5ecad9c
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