New submission from Nikita Sobolev <m...@sobolevn.me>: I first noticed it in the buildbot logs:
``` 0:24:42 load avg: 3.87 [430/431/1] test_lib2to3 passed (1 min 38 sec) <string>:2: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ ``` But, it also happens locally: ``` » ./python.exe Lib/test/test_lib2to3.py /Users/sobolev/Desktop/cpython/Lib/unittest/loader.py:350: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ __import__(name) Refactor file: /Users/sobolev/Desktop/cpython/Lib/lib2to3/refactor.py ``` After my patch it is gone: ``` » ./python.exe Lib/test/test_lib2to3.py Refactor file: /Users/sobolev/Desktop/cpython/Lib/lib2to3/refactor.py ``` ---------- components: Tests messages: 413643 nosy: Jelle Zijlstra, benjamin.peterson, lukasz.langa, sobolevn priority: normal severity: normal status: open title: Extra `DeprecationWarning` when running `lib2to3` tests type: behavior versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue46815> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com