Move down in the frame stack.
(self)
| 155 | self.frame = self.stack[self.index][0] |
| 156 | |
| 157 | def set_down(self): |
| 158 | """Move down in the frame stack.""" |
| 159 | if self.index + 1 == len(self.stack): |
| 160 | raise BdbError('Newest frame') |
| 161 | self.index += 1 |
| 162 | self.frame = self.stack[self.index][0] |
| 163 | |
| 164 | class Tracer(Bdb): |
| 165 | """A tracer for testing the bdb module.""" |