Lines Matching refs:nodes
201 tedious to fill in for generated nodes, so this helper adds these attributes
269 Yield all direct child nodes of *node*, that is, all fields that are nodes
270 and all items of fields that are lists of nodes.
382 Recursively yield all descendant nodes in the tree starting at *node*
384 only want to modify nodes in place and don't care about the context.
403 Per default the visitor functions for the nodes are ``'visit_'`` +
409 Don't use the `NodeVisitor` if you want to apply changes to nodes during
455 allows modification of nodes.
475 Keep in mind that if the node you're operating on has child nodes you must
476 either transform the child nodes yourself or call the :meth:`generic_visit`
479 For nodes that were part of a collection of statements (that applies to all
480 statement nodes), the visitor may also return a list of nodes rather than
779 def set_precedence(self, precedence, *nodes):
780 for node in nodes:
812 # NodeVisitor.generic_visit to handle any nodes (as it calls back in to
1727 help='indentation of nodes (number of spaces)')