| 155 | self.assertEqual(loader.load_count, 0) |
| 156 | |
| 157 | class RaisingThread(threading.Thread): |
| 158 | exc = None |
| 159 | def run(self): |
| 160 | try: |
| 161 | super().run() |
| 162 | except Exception as exc: |
| 163 | self.exc = exc |
| 164 | |
| 165 | def access_module(): |
| 166 | return module.attr |
no outgoing calls
searching dependent graphs…