17db96d56Sopenharmony_ciimport unittest 27db96d56Sopenharmony_cifrom test.support.import_helper import import_fresh_module 37db96d56Sopenharmony_cifrom test.support.warnings_helper import check_warnings 47db96d56Sopenharmony_ci 57db96d56Sopenharmony_ciwith check_warnings(("", DeprecationWarning)): 67db96d56Sopenharmony_ci load_tests = import_fresh_module('lib2to3.tests', fresh=['lib2to3']).load_tests 77db96d56Sopenharmony_ci 87db96d56Sopenharmony_ciif __name__ == '__main__': 97db96d56Sopenharmony_ci unittest.main() 10