示例#1
0
文件: eval.go 项目: gbbr/textmate
func GetBuiltins() (Object, error) {
	ret := C.PyEval_GetBuiltins()
	if ret == nil {
		return nil, exception()
	}
	return newObject(ret), nil
}
示例#2
0
文件: code.go 项目: MogeiWang/py
// 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)
}