func GetBuiltins() (Object, error) { ret := C.PyEval_GetBuiltins() if ret == nil { return nil, exception() } return newObject(ret), nil }
// 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. func GetBuiltins() *Base { ret := C.PyEval_GetBuiltins() return newObject(ret) }
// PyObject* PyEval_GetBuiltins() // Return value: Borrowed reference. // Return a dictionary of the builtins in the current execution frame, or the interpreter of the thread state if no frame is currently executing. func PyEval_GetBuiltins() *PyObject { return togo(C.PyEval_GetBuiltins()) }
func GetBuiltins() (Object, error) { ret := C.PyEval_GetBuiltins() return obj2ObjErr(ret) }