Home | History | Annotate | Download | only in idlelib

Lines Matching refs:lineno

60     def idle_showwarning(message, category, filename, lineno,
66 lineno, line=line))
70 def idle_formatwarning(message, category, filename, lineno, line=None):
73 s += ' File \"%s\", line %s\n' % (filename, lineno)
75 line = linecache.getline(filename, lineno)
135 def set_breakpoint(self, lineno):
138 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1))
140 i = self.breakpoints.index(lineno)
142 self.breakpoints.append(lineno)
145 debug.set_breakpoint_here(filename, lineno)
155 lineno = int(float(text.index("insert")))
156 self.set_breakpoint(lineno)
164 lineno = int(float(text.index("insert")))
166 self.breakpoints.remove(lineno)
173 debug.clear_breakpoint_here(filename, lineno)
265 lineno = int(float(ranges[index].string))
267 while lineno < end:
268 lines.append(lineno)
269 lineno += 1
689 msg, lineno, offset, line = stuff
690 if lineno == 1:
694 (lineno-1, offset-1)
712 msg, (dummy_filename, lineno, offset, line) = value
718 return msg, lineno, offset, line