(self)
| 6988 | class TestImportStar(TestCase): |
| 6989 | |
| 6990 | def test(self): |
| 6991 | for name in argparse.__all__: |
| 6992 | self.assertHasAttr(argparse, name) |
| 6993 | |
| 6994 | def test_all_exports_everything_but_modules(self): |
| 6995 | items = [ |
nothing calls this directly
no test coverage detected