ยปCore Development>Code coverage>Lib/sre.py

Python code coverage for Lib/sre.py

#countcontent
1n/a"""This file is only retained for backwards compatibility.
2n/aIt will be removed in the future. sre was moved to re in version 2.5.
31"""
4n/a
51import warnings
61warnings.warn("The sre module is deprecated, please import re.",
71 DeprecationWarning, 2)
8n/a
91from re import *
101from re import __all__
11n/a
12n/a# old pickles expect the _compile() reconstructor in this module
131from re import _compile