]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.10/Lib/sre.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Lib / sre.py
CommitLineData
3257aa99
DM
1"""This file is only retained for backwards compatibility.\r
2It will be removed in the future. sre was moved to re in version 2.5.\r
3"""\r
4\r
5import warnings\r
6warnings.warn("The sre module is deprecated, please import re.",\r
7 DeprecationWarning, 2)\r
8\r
9from re import *\r
10from re import __all__\r
11\r
12# old pickles expect the _compile() reconstructor in this module\r
13from re import _compile\r