Return a dictionary of the builtins in the current execution frame, or the interpreter of the thread state if no frame is currently executing. Return value: Borrowed reference.
()
| 123 | // |
| 124 | // Return value: Borrowed reference. |
| 125 | func GetBuiltins() *Base { |
| 126 | ret := C.PyEval_GetBuiltins() |
| 127 | return newObject(ret) |
| 128 | } |
| 129 | |
| 130 | // Return a dictionary of the global variables in the current execution frame, |
| 131 | // or NULL if no frame is currently executing. |
nothing calls this directly
no test coverage detected
searching dependent graphs…