Revision 235cacff81931a68e8c400bb3919ae6e55462fb5 authored by Brandt Bucher on 12 February 2024, 09:04:36 UTC, committed by GitHub on 12 February 2024, 09:04:36 UTC
1 parent 54bde5d
Raw File
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