File size: 163 Bytes
fbaff7b |
1 2 3 4 5 6 7 8 9 |
import warnings
warnings.warn(
"lib2to3 package is deprecated and may not be able to parse Python 3.10+",
PendingDeprecationWarning,
stacklevel=2,
)
|
fbaff7b |
1 2 3 4 5 6 7 8 9 |
import warnings
warnings.warn(
"lib2to3 package is deprecated and may not be able to parse Python 3.10+",
PendingDeprecationWarning,
stacklevel=2,
)
|