Return a dictionary of the global variables in the current execution frame, or NULL if no frame is currently executing. Return value: Borrowed reference
()
| 132 | // |
| 133 | // Return value: Borrowed reference |
| 134 | func GetLocals() *Base { |
| 135 | ret := C.PyEval_GetLocals() |
| 136 | return newObject(ret) |
| 137 | } |
| 138 | |
| 139 | // Return a dictionary of the local variables in the current execution frame, |
| 140 | // or NULL if no frame is currently executing. |
nothing calls this directly
no test coverage detected
searching dependent graphs…