mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00

(cherry picked from commit cadda52d97
)
Co-authored-by: Karthikeyan Singaravelan <tir.karthi@gmail.com>
8 lines
200 B
Python
8 lines
200 B
Python
import unittest
|
|
from test.support import check_warnings
|
|
|
|
with check_warnings(("", PendingDeprecationWarning)):
|
|
from lib2to3.tests import load_tests
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|