https://github.com/python/cpython
Raw File
Tip revision: 97a6a418167f1c8bbb014fab813e440b88cf2221 authored by Thomas Wouters on 11 July 2023, 12:22:17 UTC
Python 3.12.0b4
Tip revision: 97a6a41
sre_constants.py
import warnings
warnings.warn(f"module {__name__!r} is deprecated",
              DeprecationWarning,
              stacklevel=2)

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