(self)
| 270 | return node |
| 271 | |
| 272 | def parse_extends(self): |
| 273 | node = nodes.Extends(lineno=next(self.stream).lineno) |
| 274 | node.template = self.parse_expression() |
| 275 | return node |
| 276 | |
| 277 | def parse_import_context(self, node, default): |
| 278 | if self.stream.current.test_any('name:with', 'name:without') and \ |
nothing calls this directly
no test coverage detected