Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 9cf6752276e6fcfd0c23fdb064ad27f448aaaf75 authored by Ɓukasz Langa on 04 October 2020, 17:31:29 UTC
Python 3.9.0
Tip revision: 9cf6752
test_lib2to3.py
import unittest
from test.support import check_warnings

with check_warnings(("", PendingDeprecationWarning)):
    from lib2to3.tests import load_tests

if __name__ == '__main__':
    unittest.main()
back to top