(self)
| 243 | self.clear_bpbynumber(n) |
| 244 | |
| 245 | def pop_next(self): |
| 246 | self.expect_set_no += 1 |
| 247 | try: |
| 248 | self.expect = self.expected_list.pop(0) |
| 249 | except IndexError: |
| 250 | raise BdbNotExpectedError( |
| 251 | 'expect_set list exhausted, cannot pop item %d' % |
| 252 | self.expect_set_no) |
| 253 | self.set_tuple = self.set_list.pop(0) |
| 254 | |
| 255 | def process_event(self, event, frame, *args): |
| 256 | # Call get_stack() to enable walking the stack with set_up() and |
no test coverage detected