Sign in
android
/
platform
/
external
/
python
/
cpython3
/
3284f86b51e
/
.
/
Lib
/
sre_constants.py
blob: fa09d044292965a05a9c67e579d73091b56da892 [
file
] [
log
] [
blame
]
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
]
!=
'__'
})