(self, item)
| 164 | def __eq__(self, other): |
| 165 | return type(self) is type(other) and self.items == other.items |
| 166 | def append(self, item): |
| 167 | self.items.append(item) |
| 168 | def __reduce__(self): |
| 169 | return type(self), (), None, iter(self.items), None |
| 170 |
no outgoing calls