(self)
| 464 | return left |
| 465 | |
| 466 | def parse_not(self): |
| 467 | if self.stream.current.test('name:not'): |
| 468 | lineno = next(self.stream).lineno |
| 469 | return nodes.Not(self.parse_not(), lineno=lineno) |
| 470 | return self.parse_compare() |
| 471 | |
| 472 | def parse_compare(self): |
| 473 | lineno = self.stream.current.lineno |
no test coverage detected