(self)
| 444 | return node |
| 445 | |
| 446 | def parse_print(self) -> nodes.Output: |
| 447 | node = nodes.Output(lineno=next(self.stream).lineno) |
| 448 | node.nodes = [] |
| 449 | while self.stream.current.type != "block_end": |
| 450 | if node.nodes: |
| 451 | self.stream.expect("comma") |
| 452 | node.nodes.append(self.parse_expression()) |
| 453 | return node |
| 454 | |
| 455 | @typing.overload |
| 456 | def parse_assign_target( |
nothing calls this directly
no test coverage detected