(self)
| 557 | return attaching_block |
| 558 | |
| 559 | def duplicate_chain(self) -> Block: |
| 560 | return self.bottom_level_block.attach_chain(*map(Block.dcopy, self.attached_chain)) |
| 561 | |
| 562 | def slot_above(self, new: Block) -> Block: |
| 563 | """ |
nothing calls this directly
no test coverage detected