https://github.com/python/cpython
Raw File
Tip revision: 8b6ee5ba3bd08368ba3c763cea28ce1464a88e62 authored by Pablo Galindo on 02 October 2023, 13:26:51 UTC
Python 3.11.6
Tip revision: 8b6ee5b
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