Convert Editops to a list of tuples. This is the equivalent of ``[x for x in editops]``
(self)
| 322 | return blocks |
| 323 | |
| 324 | def as_list(self): |
| 325 | """ |
| 326 | Convert Editops to a list of tuples. |
| 327 | |
| 328 | This is the equivalent of ``[x for x in editops]`` |
| 329 | """ |
| 330 | return [tuple(op) for op in self._editops] |
| 331 | |
| 332 | def copy(self): |
| 333 | """ |
no outgoing calls