You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
232 B
7 lines
232 B
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] != '__'})
|
|
|