(self, key)
| 94 | return self.data.get(IdentityWeakRef(key), default) |
| 95 | |
| 96 | def __contains__(self, key): |
| 97 | try: |
| 98 | wr = IdentityWeakRef(key) |
| 99 | except TypeError: |
| 100 | return False |
| 101 | return wr in self.data |
| 102 | |
| 103 | def items(self): |
| 104 | with _IterationGuard(self): |
nothing calls this directly
no test coverage detected