(root)/
Python-3.12.0/
Lib/
sre_constants.py
       1  import warnings
       2  warnings.warn(f"module {__name__!r} is deprecated",
       3                DeprecationWarning,
       4                stacklevel=2)
       5  
       6  from re import _constants as _
       7  globals().update({k: v for k, v in vars(_).items() if k[:2] != '__'})