(self, context)
| 1104 | contains_nontext = False |
| 1105 | |
| 1106 | def render(self, context): |
| 1107 | return SafeString("".join([node.render_annotated(context) for node in self])) |
| 1108 | |
| 1109 | def get_nodes_by_type(self, nodetype): |
| 1110 | "Return a list of all nodes of the given type" |
nothing calls this directly
no test coverage detected