(root)/
Python-3.11.7/
Lib/
lib2to3/
__init__.py
       1  import warnings
       2  
       3  
       4  warnings.warn(
       5      "lib2to3 package is deprecated and may not be able to parse Python 3.10+",
       6      DeprecationWarning,
       7      stacklevel=2,
       8  )