Lines Matching refs:lineno
25 lineno -- the line in the file on which the class statement occurred
39 lineno -- the line in the file on which the class statement occurred
55 def __init__(self, module, name, super, file, lineno):
63 self.lineno = lineno
65 def _addmethod(self, name, lineno):
66 self.methods[name] = lineno
70 def __init__(self, module, name, file, lineno):
74 self.lineno = lineno
157 lineno, thisindent = start
162 lineno, thisindent = start
173 cur_class._addmethod(meth_name, lineno)
178 fname, lineno)
181 lineno, thisindent = start
231 fname, lineno)
331 objs.sort(lambda a, b: cmp(getattr(a, 'lineno', 0),
332 getattr(b, 'lineno', 0)))
335 print "class", obj.name, obj.super, obj.lineno
337 for name, lineno in methods:
339 print " def", name, lineno
341 print "def", obj.name, obj.lineno