(self, attribute)
| 423 | return dct |
| 424 | |
| 425 | def resolve(self, attribute): |
| 426 | from_i, to_i = attribute[1:-1].split(":") |
| 427 | from_i = int(from_i) |
| 428 | to_i = int(to_i) |
| 429 | return MoreItemsRange(self.value, from_i, to_i) |
| 430 | |
| 431 | def __eq__(self, o): |
| 432 | return isinstance(o, MoreItems) and self.value is o.value |