Yield a sequence of (name,value) pairs of PyObjectPtr instances, for the global variables of this frame
(self)
| 1155 | return self._f_special("previous", PyFramePtr) |
| 1156 | |
| 1157 | def iter_globals(self): |
| 1158 | ''' |
| 1159 | Yield a sequence of (name,value) pairs of PyObjectPtr instances, for |
| 1160 | the global variables of this frame |
| 1161 | ''' |
| 1162 | if self.is_optimized_out(): |
| 1163 | return () |
| 1164 | |
| 1165 | pyop_globals = self._f_globals() |
| 1166 | return pyop_globals.iteritems() |
| 1167 | |
| 1168 | def iter_builtins(self): |
| 1169 | ''' |
no test coverage detected