https://github.com/python/cpython
Raw File
Tip revision: cce6ba91b3a0111110d7e1db828bd6311d58a0a7 authored by Pablo Galindo on 24 August 2023, 12:05:22 UTC
Python 3.11.5
Tip revision: cce6ba9
__init__.py
import warnings


warnings.warn(
    "lib2to3 package is deprecated and may not be able to parse Python 3.10+",
    DeprecationWarning,
    stacklevel=2,
)
back to top