master
/ miniconda3 / lib / python3.11 / sre_compile.py

sre_compile.py @74036c5 raw · history · blame

1
2
3
4
5
6
7
import warnings
warnings.warn(f"module {__name__!r} is deprecated",
              DeprecationWarning,
              stacklevel=2)

from re import _compiler as _
globals().update({k: v for k, v in vars(_).items() if k[:2] != '__'})