(self)
| 553 | return left |
| 554 | |
| 555 | def parse_not(self) -> nodes.Expr: |
| 556 | if self.stream.current.test("name:not"): |
| 557 | lineno = next(self.stream).lineno |
| 558 | return nodes.Not(self.parse_not(), lineno=lineno) |
| 559 | return self.parse_compare() |
| 560 | |
| 561 | def parse_compare(self) -> nodes.Expr: |
| 562 | lineno = self.stream.current.lineno |
no test coverage detected