(loader, tests, pattern)
| 11160 | |
| 11161 | |
| 11162 | def load_tests(loader, tests, pattern): |
| 11163 | import doctest |
| 11164 | tests.addTests(doctest.DocTestSuite(typing)) |
| 11165 | return tests |
| 11166 | |
| 11167 | |
| 11168 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected
searching dependent graphs…