Home | History | Annotate | Download | only in compiler

Lines Matching refs:node

25     def visitModule(self, node):
26 stmt = node.node
50 def visitFrom(self, node):
51 if hasattr(node, 'valid_future'):
53 if node.modname != "__future__":
55 raise SyntaxError, "invalid future statement " + repr(node)
57 def find_futures(node):
60 walk(node, p1)
61 walk(node, p2)