Python code coverage for Lib/sre.py
| # | count | content |
|---|---|---|
| 1 | n/a | """This file is only retained for backwards compatibility. |
| 2 | n/a | It will be removed in the future. sre was moved to re in version 2.5. |
| 3 | 1 | """ |
| 4 | n/a | |
| 5 | 1 | import warnings |
| 6 | 1 | warnings.warn("The sre module is deprecated, please import re.", |
| 7 | 1 | DeprecationWarning, 2) |
| 8 | n/a | |
| 9 | 1 | from re import * |
| 10 | 1 | from re import __all__ |
| 11 | n/a | |
| 12 | n/a | # old pickles expect the _compile() reconstructor in this module |
| 13 | 1 | from re import _compile |
