Home | History | Annotate | Download | only in compiler

Lines Matching full:lineno

320         lineno attribute and it is different than the last lineno
325 There are no rules for when an AST node should have a lineno
330 lineno = getattr(node, 'lineno', None)
331 if lineno is not None and (lineno != self.last_lineno
333 self.emit('SET_LINENO', lineno)
334 self.last_lineno = lineno
487 (node.filename, node.lineno)
494 (node.filename, node.lineno)
511 (node.filename, node.lineno)
516 raise SyntaxError, msg % (node.filename, node.lineno)