https://github.com/python/cpython
Raw File
Tip revision: 03a24a9b2181eb226b2e237916a2564b33c44a58 authored by dependabot[bot] on 01 April 2024, 09:46:03 UTC
build(deps): bump hypothesis from 6.98.15 to 6.100.0 in /Tools
Tip revision: 03a24a9
sre_parse.py
import warnings
warnings.warn(f"module {__name__!r} is deprecated",
              DeprecationWarning,
              stacklevel=2)

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