https://github.com/python/cpython
Raw File
Tip revision: cce6ba91b3a0111110d7e1db828bd6311d58a0a7 authored by Pablo Galindo on 24 August 2023, 12:05:22 UTC
Python 3.11.5
Tip revision: cce6ba9
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