Files
UnrealEngine/Engine/Binaries/ThirdParty/Python3/Mac/lib/python3.11/sre_constants.py
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

8 lines
232 B
Python

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] != '__'})