(self)
| 423 | raise RuntimeError("Illegal to getitem on a set") |
| 424 | |
| 425 | def as_python_constant(self): |
| 426 | return self.python_type()([x.as_python_constant() for x in self.items]) |
| 427 | |
| 428 | def unpack_var_sequence(self, tx): |
| 429 | return list(self.items) |
no test coverage detected