131 """ |
131 """ |
132 Public method to return the frame "frmnr" down the stack. |
132 Public method to return the frame "frmnr" down the stack. |
133 |
133 |
134 @param frmnr distance of frames down the stack. 0 is |
134 @param frmnr distance of frames down the stack. 0 is |
135 the current frame |
135 the current frame |
136 @rtype int |
136 @type int |
137 @return the current frame |
137 @return the current frame |
138 @rtype frame object |
138 @rtype frame object |
139 """ |
139 """ |
140 # Don't show any local frames after the program was stopped |
140 # Don't show any local frames after the program was stopped |
141 if self.quitting: |
141 if self.quitting: |