Home | History | Annotate | Download | only in idlelib

Lines Matching refs:breakpoints

107     "Regular text edit window in IDLE, supports breakpoints"
110 self.breakpoints = []
117 'breakpoints.lst')
118 # whenever a file is changed, restore breakpoints
140 i = self.breakpoints.index(lineno)
142 self.breakpoints.append(lineno)
166 self.breakpoints.remove(lineno)
178 if self.breakpoints:
184 self.breakpoints = []
193 "Save breakpoints when file is saved"
204 # Breakpoints are set as tagged ranges in the text. Certain
211 # run, and since self.breakpoints (from which the subprocess
215 breaks = self.breakpoints
228 breaks = self.breakpoints
256 "Retrieves all the breakpoints in the current window"
260 self.breakpoints = linenumber_list
286 "Extend base class: IDLE supports a shell and breakpoints"
487 # reload remote debugger breakpoints for all PyShellEditWindows