Пример #1
0
func GetBuiltins() (Object, error) {
	ret := C.PyEval_GetBuiltins()
	if ret == nil {
		return nil, exception()
	}
	return newObject(ret), nil
}
Пример #2
0
// 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)
}
Пример #3
0
// 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())
}
Пример #4
0
func GetBuiltins() (Object, error) {
	ret := C.PyEval_GetBuiltins()
	return obj2ObjErr(ret)
}