| 94 | _iid_ = GUID.create_new() |
| 95 | |
| 96 | class IDerived(IBase): |
| 97 | _iid_ = GUID.create_new() |
| 98 | |
| 99 | # We cannot assign _methods_ to IDerived before IBase has it's _methods_: |
| 100 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected
searching dependent graphs…