mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
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] != '__'})
|