(loader, tests, pattern)
| 3080 | |
| 3081 | |
| 3082 | def load_tests(loader, tests, pattern): |
| 3083 | from doctest import DocTestSuite |
| 3084 | if sys.float_repr_style == 'short': |
| 3085 | tests.addTest(DocTestSuite(builtins)) |
| 3086 | return tests |
| 3087 | |
| 3088 | if __name__ == "__main__": |
| 3089 | unittest.main() |
nothing calls this directly
no test coverage detected
searching dependent graphs…