9 lines
163 B
Python
9 lines
163 B
Python
|
import warnings
|
||
|
|
||
|
|
||
|
warnings.warn(
|
||
|
"lib2to3 package is deprecated and may not be able to parse Python 3.10+",
|
||
|
PendingDeprecationWarning,
|
||
|
stacklevel=2,
|
||
|
)
|