(self)
| 127 | del self.data[key] |
| 128 | |
| 129 | def __iter__(self): |
| 130 | keys = list(self.data.keys()) |
| 131 | keys.sort() |
| 132 | for key in keys: |
| 133 | yield key |
| 134 | |
| 135 | def __len__(self): |
| 136 | return len(self.data) |
nothing calls this directly
no outgoing calls
no test coverage detected