https://github.com/python/cpython
Raw File
Tip revision: 3de092b82f5aa02fa293cd654c2ab26556ecf703 authored by Rafael Fontenelle on 20 July 2024, 03:46:57 UTC
Docs: Fix a typo in What's New in Python 3.13 (#122051)
Tip revision: 3de092b
sre_compile.py
import warnings
warnings.warn(f"module {__name__!r} is deprecated",
              DeprecationWarning,
              stacklevel=2)

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