(loader, tests, pattern)
| 3030 | |
| 3031 | |
| 3032 | def load_tests(loader, tests, pattern): |
| 3033 | from doctest import DocTestSuite |
| 3034 | if sys.float_repr_style == 'short': |
| 3035 | tests.addTest(DocTestSuite(builtins)) |
| 3036 | return tests |
| 3037 | |
| 3038 | if __name__ == "__main__": |
| 3039 | unittest.main() |
nothing calls this directly
no test coverage detected