(mod)
| 624 | return obj |
| 625 | |
| 626 | def get_exceptions(mod): |
| 627 | for name in dir(mod): |
| 628 | attr = getattr(mod, name) |
| 629 | if isinstance(attr, type) and issubclass(attr, BaseException): |
| 630 | yield name, attr |
| 631 | |
| 632 | class CompatPickleTests(unittest.TestCase): |
| 633 | def test_import(self): |
no outgoing calls
no test coverage detected
searching dependent graphs…