(self)
| 231 | return node |
| 232 | |
| 233 | def parse_extends(self): |
| 234 | node = nodes.Extends(lineno=next(self.stream).lineno) |
| 235 | node.template = self.parse_expression() |
| 236 | return node |
| 237 | |
| 238 | def parse_import_context(self, node, default): |
| 239 | if self.stream.current.test_any('name:with', 'name:without') and \ |
nothing calls this directly
no test coverage detected