(self, key)
| 75 | del self.data[IdentityWeakRef(key)] |
| 76 | |
| 77 | def __getitem__(self, key): |
| 78 | return self.data[IdentityWeakRef(key)] |
| 79 | |
| 80 | def __len__(self): |
| 81 | if self._dirty_len and self._pending_removals: |
nothing calls this directly
no test coverage detected