https://github.com/python/cpython
Raw File
Tip revision: ad056f03aee8000a1564a1d17f655f8713c48e48 authored by Thomas Wouters on 13 October 2023, 08:50:46 UTC
Python 3.13.0a1
Tip revision: ad056f0
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