(self, item)
| 4307 | def __eq__(self, other): |
| 4308 | return type(self) is type(other) and self.items == other.items |
| 4309 | def append(self, item): |
| 4310 | self.items.append(item) |
| 4311 | def __reduce__(self): |
| 4312 | return type(self), (), None, iter(self.items), None |
| 4313 |
no outgoing calls
no test coverage detected