(self)
| 1050 | return items |
| 1051 | |
| 1052 | def test_files(self): |
| 1053 | with warnings.catch_warnings(): |
| 1054 | warnings.simplefilter('ignore', SyntaxWarning) |
| 1055 | |
| 1056 | for item in self.files_to_test(): |
| 1057 | if test.support.verbose: |
| 1058 | print(f"Testing {item.absolute()}") |
| 1059 | |
| 1060 | with self.subTest(filename=item): |
| 1061 | source = read_pyfile(item) |
| 1062 | self.check_ast_roundtrip(source) |
| 1063 | |
| 1064 | |
| 1065 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected