Yield a sequence of (name,value) pairs of PyObjectPtr instances, for the global variables of this frame
(self)
| 997 | return self._frame.iter_locals() |
| 998 | |
| 999 | def iter_globals(self): |
| 1000 | ''' |
| 1001 | Yield a sequence of (name,value) pairs of PyObjectPtr instances, for |
| 1002 | the global variables of this frame |
| 1003 | ''' |
| 1004 | if self.is_optimized_out(): |
| 1005 | return () |
| 1006 | return self._frame.iter_globals() |
| 1007 | |
| 1008 | def iter_builtins(self): |
| 1009 | ''' |
nothing calls this directly
no test coverage detected