bpo-40360: Deprecate the lib2to3 package (GH-28116)

This commit is contained in:
Victor Stinner 2021-09-02 11:46:47 +02:00 committed by GitHub
parent 679cb4781e
commit d589a7e7eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 2 deletions

View file

@ -3,6 +3,6 @@ import warnings
warnings.warn(
"lib2to3 package is deprecated and may not be able to parse Python 3.10+",
PendingDeprecationWarning,
DeprecationWarning,
stacklevel=2,
)