(self)
| 446 | return expr1 |
| 447 | |
| 448 | def parse_or(self): |
| 449 | lineno = self.stream.current.lineno |
| 450 | left = self.parse_and() |
| 451 | while self.stream.skip_if('name:or'): |
| 452 | right = self.parse_and() |
| 453 | left = nodes.Or(left, right, lineno=lineno) |
| 454 | lineno = self.stream.current.lineno |
| 455 | return left |
| 456 | |
| 457 | def parse_and(self): |
| 458 | lineno = self.stream.current.lineno |
no test coverage detected