https://github.com/python/cpython
Raw File
Tip revision: f992a60014b7ca83de038fc64572a63f4eb39c74 authored by Thomas Wouters on 19 June 2023, 18:55:07 UTC
Python 3.12.0b3
Tip revision: f992a60
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