Remove an item from the set.
(self, item)
| 21 | self._dict[item] = item |
| 22 | |
| 23 | def remove(self, item): |
| 24 | """Remove an item from the set.""" |
| 25 | del self._dict[item] |
| 26 | |
| 27 | def contains(self, item): |
| 28 | """Check whether the set contains a certain item.""" |
no outgoing calls
no test coverage detected