mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
8 lines
216 B
Python
8 lines
216 B
Python
import unittest
|
|
from test.support.warnings_helper import check_warnings
|
|
|
|
with check_warnings(("", PendingDeprecationWarning)):
|
|
from lib2to3.tests import load_tests
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|