(self, sequence, **kw)
| 6695 | return self.visit_getitem_binary(binary, operator, **kw) |
| 6696 | |
| 6697 | def visit_sequence(self, sequence, **kw): |
| 6698 | return ( |
| 6699 | f"<next sequence value: {self.preparer.format_sequence(sequence)}>" |
| 6700 | ) |
| 6701 | |
| 6702 | def returning_clause( |
| 6703 | self, |
nothing calls this directly
no test coverage detected