(self)
| 535 | return expr1 |
| 536 | |
| 537 | def parse_or(self) -> nodes.Expr: |
| 538 | lineno = self.stream.current.lineno |
| 539 | left = self.parse_and() |
| 540 | while self.stream.skip_if("name:or"): |
| 541 | right = self.parse_and() |
| 542 | left = nodes.Or(left, right, lineno=lineno) |
| 543 | lineno = self.stream.current.lineno |
| 544 | return left |
| 545 | |
| 546 | def parse_and(self) -> nodes.Expr: |
| 547 | lineno = self.stream.current.lineno |
no test coverage detected