(self, sequence, **kw)
| 6931 | return self.visit_getitem_binary(binary, operator, **kw) |
| 6932 | |
| 6933 | def visit_sequence(self, sequence, **kw): |
| 6934 | return ( |
| 6935 | f"<next sequence value: {self.preparer.format_sequence(sequence)}>" |
| 6936 | ) |
| 6937 | |
| 6938 | def returning_clause( |
| 6939 | self, |
nothing calls this directly
no test coverage detected