(self, item)
| 319 | self.data.remove(ref(item)) |
| 320 | |
| 321 | def discard(self, item): |
| 322 | if self._pending_removals: |
| 323 | self._commit_removals() |
| 324 | self.data.discard(ref(item)) |
| 325 | |
| 326 | def update(self, other): |
| 327 | if self._pending_removals: |
no test coverage detected