Documentation ¶
Index ¶
- Constants
- func ErrClear()
- func ErrPrint()
- func Finalize()
- func Initialize()
- func InitializeEx(initsigs c.Int)
- func RunSimpleFile(fp c.FilePtr, filename *c.Char) c.Int
- func RunSimpleFileFlags(fp c.FilePtr, filename *c.Char, flags *CompilerFlags) c.Int
- func RunSimpleString(command *c.Char) c.Int
- func RunSimpleStringFlags(command *c.Char, flags *CompilerFlags) c.Int
- func SetProgramName(name *c.Char)
- type CompilerFlags
- type InputType
- type Object
- func AddModule(name *c.Char) *Object
- func BuildValue(format *c.Char, __llgo_va_list ...any) *Object
- func CompileString(str, filename *c.Char, start InputType) *Object
- func CompileStringExFlags(str, filename *c.Char, start InputType, flags *CompilerFlags, optimize c.Int) *Object
- func CompileStringFlags(str, filename *c.Char, start InputType, flags *CompilerFlags) *Object
- func CompileStringObject(str *c.Char, filename *Object, start InputType, flags *CompilerFlags, ...) *Object
- func EvalCode(code, globals, locals *Object) *Object
- func EvalCodeEx(code, globals, locals *Object, args *Object, argcount c.Int, kws *Object, ...) *Object
- func Float(v float64) *Object
- func FloatFromSring(v *Object) *Object
- func Import(name *Object) *Object
- func ImportModule(name *c.Char) *Object
- func List(__llgo_va_list ...any) *Object
- func Long(v c.Long) *Object
- func LongFromCStr(v *c.Char, pend **c.Char, base c.Int) *Object
- func LongFromFloat64(v float64) *Object
- func LongFromUnicode(v *Object, base c.Int) *Object
- func LongFromVoidPtr(v c.Pointer) *Object
- func LongLong(v c.LongLong) *Object
- func NewDict() *Object
- func NewFunc(code, globals *Object) *Object
- func NewFuncWithQualName(code, globals, qualname *Object) *Object
- func NewList(len uintptr) *Object
- func NewTuple(len uintptr) *Object
- func Uintptr(v uintptr) *Object
- func Ulong(v c.Ulong) *Object
- func UlongLong(v c.UlongLong) *Object
- func (u *Object) CStr() *c.Char
- func (u *Object) CStrAndLen() (*c.Char, uintptr)
- func (o *Object) Call(args, kwargs *Object) *Object
- func (o *Object) CallFunction(format *c.Char, __llgo_va_list ...any) *Object
- func (o *Object) CallFunctionObjArgs(__llgo_va_list ...any) *Object
- func (o *Object) CallMethod(name *c.Char, format *c.Char, __llgo_va_list ...any) *Object
- func (o *Object) CallMethodNoArgs(name *Object) *Object
- func (o *Object) CallMethodObjArgs(name *Object, __llgo_va_list ...any) *Object
- func (o *Object) CallMethodOneArg(name, arg *Object) *Object
- func (o *Object) CallNoArgs() *Object
- func (o *Object) CallObject(args *Object) *Object
- func (o *Object) CallOneArg(arg *Object) *Object
- func (o *Object) Callable() c.Int
- func (o *Object) CodeBytes() *Object
- func (o *Object) CodeVarnames() *Object
- func (u *Object) Cstr() *c.Char
- func (o *Object) DecRef()
- func (d *Object) DictItems() *Object
- func (d *Object) DictKeys() *Object
- func (d *Object) DictValues() *Object
- func (o *Object) Float64() float64
- func (f *Object) FuncCode() *Object
- func (o *Object) GetAttr(attrName *Object) *Object
- func (o *Object) GetAttrString(attrName *c.Char) *Object
- func (o *Object) IsTrue() c.Int
- func (l *Object) ListAppend(item *Object) c.Int
- func (l *Object) ListAsTuple() *Object
- func (l *Object) ListInsert(index uintptr, item *Object) c.Int
- func (l *Object) ListItem(index uintptr) *Object
- func (l *Object) ListLen() uintptr
- func (l *Object) ListReverse() c.Int
- func (l *Object) ListSetItem(index uintptr, item *Object) c.Int
- func (l *Object) ListSetSlice(low, high uintptr, itemlist *Object) c.Int
- func (l *Object) ListSlice(low, high uintptr) *Object
- func (l *Object) ListSort() c.Int
- func (l *Object) Long() c.Long
- func (l *Object) LongAsFloat64() float64
- func (l *Object) LongAsVoidPtr() c.Pointer
- func (l *Object) LongLong() c.LongLong
- func (m *Object) ModuleGetDict() *Object
- func (m *Object) ModuleLoadSyms(__llgo_va_list ...any)
- func (o *Object) NotTrue() c.Int
- func (o *Object) Str() *Object
- func (t *Object) TupleItem(index uintptr) *Object
- func (t *Object) TupleLen() uintptr
- func (o *Object) Type() *Object
- func (t *Object) TypeFlags() uint32
- func (t *Object) TypeModule() *Object
- func (t *Object) TypeName() *Object
- func (l *Object) Uintptr() uintptr
- func (l *Object) Ulong() c.Ulong
- func (l *Object) UlongLong() c.UlongLong
- func (o *Object) Vectorcall(args **Object, nargs uintptr, kwnames *Object) *Object
- func (o *Object) VectorcallDict(args **Object, nargs uintptr, kwdict *Object) *Object
- func (o *Object) VectorcallMethod(name *Object, args **Object, nargs uintptr, kwnames *Object) *Object
Constants ¶
const (
LLGoPackage = "link: $LLGO_LIB_PYTHON"
)
Variables ¶
This section is empty.
Functions ¶
func ErrClear ¶ added in v0.8.2
func ErrClear()
Clear the error indicator. If the error indicator is not set, there is no effect.
func Initialize ¶
func Initialize()
func InitializeEx ¶
This function works like Initialize() if initsigs is 1. If initsigs is 0, it skips initialization registration of signal handlers, which might be useful when Python is embedded.
func RunSimpleFileFlags ¶
func RunSimpleStringFlags ¶
func RunSimpleStringFlags(command *c.Char, flags *CompilerFlags) c.Int
func SetProgramName ¶
Types ¶
type Object ¶
type Object struct {
Unused [8]byte
}
Object represents a Python object.
func AddModule ¶ added in v0.8.2
Return the module object corresponding to a module name. The name argument may be of the form package.module. First check the modules dictionary if there’s one there, and if not, create a new one and insert it in the modules dictionary. Return nil with an exception set on failure.
func BuildValue ¶
Create a new value based on a format string similar to those accepted by the PyArg_Parse* family of functions and a sequence of values. Returns the value or nil in the case of an error; an exception will be raised if nil is returned. See https://docs.python.org/3/c-api/arg.html#c.Py_BuildValue
func CompileStringExFlags ¶
func CompileStringFlags ¶
func CompileStringFlags(str, filename *c.Char, start InputType, flags *CompilerFlags) *Object
func CompileStringObject ¶
func CompileStringObject(str *c.Char, filename *Object, start InputType, flags *CompilerFlags, optimize c.Int) *Object
Parse and compile the Python source code in str, returning the resulting code object. The start token is given by start; this can be used to constrain the code which can be compiled and should be py.EvalInput, py.FileInput, or py.SingleInput. The filename specified by filename is used to construct the code object and may appear in tracebacks or SyntaxError exception messages. This returns NULL if the code cannot be parsed or compiled.
The integer optimize specifies the optimization level of the compiler; a value of -1 selects the optimization level of the interpreter as given by -O options. Explicit levels are 0 (no optimization; __debug__ is true), 1 (asserts are removed, __debug__ is false) or 2 (docstrings are removed too).
func EvalCode ¶
This is a simplified interface to EvalCodeEx, with just the code object, and global and local variables. The other arguments are set to nil.
func EvalCodeEx ¶
func EvalCodeEx( code, globals, locals *Object, args *Object, argcount c.Int, kws *Object, kwcount c.Int, defs *Object, defcount c.Int, kwdefs, closure *Object) *Object
Evaluate a precompiled code object, given a particular environment for its evaluation. This environment consists of a dictionary of global variables, a mapping object of local variables, arrays of arguments, keywords and defaults, a dictionary of default values for keyword-only arguments and a closure tuple of cells.
func FloatFromSring ¶
func Import ¶
This is a higher-level interface that calls the current “import hook function” (with an explicit level of 0, meaning absolute import). It invokes the __import__() function from the __builtins__ of the current globals. This means that the import is done using whatever import hooks are installed in the current environment.
This function always uses absolute imports.
func ImportModule ¶
This is a wrapper around py.Import which takes a const char* as an argument instead of an Object.
func LongFromFloat64 ¶ added in v0.8.2
func LongFromVoidPtr ¶ added in v0.8.2
func NewDict ¶ added in v0.8.2
func NewDict() *Object
Return a new empty dictionary, or nil on failure.
func NewFunc ¶ added in v0.8.2
Return a new function object associated with the code object code. globals must be a dictionary with the global variables accessible to the function.
The function’s docstring and name are retrieved from the code object. __module__ is retrieved from globals. The argument defaults, annotations and closure are set to nil. __qualname__ is set to the same value as the code object’s co_qualname field.
func NewFuncWithQualName ¶ added in v0.8.2
As NewFunc, but also allows setting the function object’s __qualname__ attribute. qualname should be a unicode object or nil; if nil, the __qualname__ attribute is set to the same value as the code object’s co_qualname field.
func (*Object) CStr ¶
As CStrAndLen, but does not store the len.
llgo:link (*Object).CStr C.PyUnicode_AsUTF8
func (*Object) CStrAndLen ¶ added in v0.8.2
Return a pointer to the UTF-8 encoding of the Unicode object, and store the size of the encoded representation (in bytes) in size. The size argument can be nil; in this case no size will be stored. The returned buffer always has an extra null byte appended (not included in size), regardless of whether there are any other null code points.
In the case of an error, nil is returned with an exception set and no size is stored.
This caches the UTF-8 representation of the string in the Unicode object, and subsequent calls will return a pointer to the same buffer. The caller is not responsible for deallocating the buffer. The buffer is deallocated and pointers to it become invalid when the Unicode object is garbage collected.
llgo:link (*Object).CStrAndLen C.PyUnicode_AsUTF8AndSize
func (*Object) Call ¶
Call a callable Python object o, with arguments given by the tuple args, and named arguments given by the dictionary kwargs.
args must not be nil; use an empty tuple if no arguments are needed. If no named arguments are needed, kwargs can be nil.
Return the result of the call on success, or raise an exception and return nil on failure.
This is the equivalent of the Python expression: o(*args, **kwargs).
llgo:link (*Object).Call C.PyObject_Call
func (*Object) CallFunction ¶
Call a callable Python object o, with a variable number of C arguments. The C arguments are described using a py.BuildValue style format string. The format can be nil, indicating that no arguments are provided.
Return the result of the call on success, or raise an exception and return nil on failure.
This is the equivalent of the Python expression: o(*args).
Note that if you only pass PyObject* args, (*Object).CallFunctionObjArgs is a faster alternative.
llgo:link (*Object).CallFunction C.PyObject_CallFunction
func (*Object) CallFunctionObjArgs ¶
Call a callable Python object o, with a variable number of PyObject* arguments. The arguments are provided as a variable number of parameters followed by nil.
Return the result of the call on success, or raise an exception and return nil on failure.
This is the equivalent of the Python expression: o(arg1, arg2, ...).
llgo:link (*Object).CallFunctionObjArgs C.PyObject_CallFunctionObjArgs
func (*Object) CallMethod ¶
llgo:link (*Object).CallMethod C.PyObject_CallMethod
func (*Object) CallMethodNoArgs ¶
llgo:link (*Object).CallMethodNoArgs C.PyObject_CallMethodNoArgs
func (*Object) CallMethodObjArgs ¶
llgo:link (*Object).CallMethodObjArgs C.PyObject_CallMethodObjArgs
func (*Object) CallMethodOneArg ¶
llgo:link (*Object).CallMethodOneArg C.PyObject_CallMethodOneArg
func (*Object) CallNoArgs ¶
Call a callable Python object callable without any arguments. It is the most efficient way to call a callable Python object without any argument.
Return the result of the call on success, or raise an exception and return nil on failure.
llgo:link (*Object).CallNoArgs C.PyObject_CallNoArgs
func (*Object) CallObject ¶
Call a callable Python object o, with arguments given by the tuple args. If no arguments are needed, then args can be nil.
Return the result of the call on success, or raise an exception and return nil on failure.
This is the equivalent of the Python expression: o(*args).
llgo:link (*Object).CallObject C.PyObject_CallObject
func (*Object) CallOneArg ¶
Call a callable Python object callable with exactly 1 positional argument arg and no keyword arguments.
Return the result of the call on success, or raise an exception and return nil on failure.
llgo:link (*Object).CallOneArg C.PyObject_CallOneArg
func (*Object) Callable ¶
Determine if the object o is callable. Return 1 if the object is callable and 0 otherwise. This function always succeeds.
llgo:link (*Object).Callable C.PyCallable_Check
func (*Object) CodeBytes ¶ added in v0.8.2
Equivalent to the Python code getattr(co, 'co_code'). Returns a strong reference to a BytesObject representing the bytecode in a code object. On error, nil is returned and an exception is raised.
This BytesObject may be created on-demand by the interpreter and does not necessarily represent the bytecode actually executed by CPython. The primary use case for this function is debuggers and profilers.
llgo:link (*Object).CodeBytes C.PyCode_GetCode
func (*Object) CodeVarnames ¶ added in v0.8.2
Equivalent to the Python code getattr(co, 'co_varnames'). Returns a new reference to a TupleObject containing the names of the local variables. On error, nil is returned and an exception is raised.
llgo:link (*Object).CodeVarnames C.PyCode_GetVarnames
func (*Object) Cstr ¶ added in v0.8.3
Same as CStr. Provided for Go+.
llgo:link (*Object).Cstr C.PyUnicode_AsUTF8
func (*Object) DictItems ¶ added in v0.8.2
Return a ListObject containing all the items from the dictionary.
llgo:link (*Object).DictItems C.PyDict_Items
func (*Object) DictKeys ¶ added in v0.8.2
Return a ListObject containing all the keys from the dictionary.
llgo:link (*Object).DictKeys C.PyDict_Keys
func (*Object) DictValues ¶ added in v0.8.2
Return a ListObject containing all the values from the dictionary.
llgo:link (*Object).DictValues C.PyDict_Values
func (*Object) FuncCode ¶ added in v0.8.2
Return the code object associated with the function object op.
llgo:link (*Object).FuncCode C.PyFunction_GetCode
func (*Object) GetAttr ¶
Retrieve an attribute named attrName from object o. Returns the attribute value on success, or nil on failure. This is the equivalent of the Python expression o.attrName.
llgo:link (*Object).GetAttr C.PyObject_GetAttr
func (*Object) GetAttrString ¶
llgo:link (*Object).GetAttrString C.PyObject_GetAttrString
func (*Object) IsTrue ¶ added in v0.8.2
Returns 1 if the object o is considered to be true, and 0 otherwise. This is equivalent to the Python expression not not o. On failure, return -1.
llgo:link (*Object).IsTrue C.PyObject_IsTrue
func (*Object) ListAppend ¶ added in v0.8.2
Append the object item at the end of list list. Return 0 if successful; return -1 and set an exception if unsuccessful. Analogous to list.append(item).
llgo:link (*Object).ListAppend C.PyList_Append
func (*Object) ListAsTuple ¶ added in v0.8.2
Return a new tuple object containing the contents of list; equivalent to tuple(list).
llgo:link (*Object).ListAsTuple C.PyList_AsTuple
func (*Object) ListInsert ¶ added in v0.8.2
Insert the item item into list list in front of index index. Return 0 if successful; return -1 and set an exception if unsuccessful. Analogous to list.insert(index, item).
llgo:link (*Object).ListInsert C.PyList_Insert
func (*Object) ListItem ¶ added in v0.8.2
Return the object at position index in the list pointed to by list. The position must be non-negative; indexing from the end of the list is not supported. If index is out of bounds (<0 or >=len(list)), return nil and set an IndexError exception.
llgo:link (*Object).ListItem C.PyList_GetItem
func (*Object) ListLen ¶ added in v0.8.2
Return the length of the list object in list; this is equivalent to len(list) on a list object.
llgo:link (*Object).ListLen C.PyList_Size
func (*Object) ListReverse ¶ added in v0.8.2
Reverse the items of list in place. Return 0 on success, -1 on failure. This is the equivalent of list.reverse().
llgo:link (*Object).ListReverse C.PyList_Reverse
func (*Object) ListSetItem ¶ added in v0.8.2
Set the item at index index in list to item. Return 0 on success. If index is out of bounds, return -1 and set an IndexError exception.
llgo:link (*Object).ListSetItem C.PyList_SetItem
func (*Object) ListSetSlice ¶ added in v0.8.2
Set the slice of list between low and high to the contents of itemlist. Analogous to list[low:high] = itemlist. The itemlist may be NULL, indicating the assignment of an empty list (slice deletion). Return 0 on success, -1 on failure. Indexing from the end of the list is not supported.
llgo:link (*Object).ListSetSlice C.PyList_SetSlice
func (*Object) ListSlice ¶ added in v0.8.2
Return a list of the objects in list containing the objects between low and high. Return nil and set an exception if unsuccessful. Analogous to list[low:high]. Indexing from the end of the list is not supported.
llgo:link (*Object).ListSlice C.PyList_GetSlice
func (*Object) ListSort ¶ added in v0.8.2
Sort the items of list in place. Return 0 on success, -1 on failure. This is equivalent to list.sort().
llgo:link (*Object).ListSort C.PyList_Sort
func (*Object) LongAsFloat64 ¶ added in v0.8.2
llgo:link (*Object).LongAsFloat64 C.PyLong_AsDouble
func (*Object) LongAsVoidPtr ¶ added in v0.8.2
llgo:link (*Object).LongAsVoidPtr C.PyLong_AsVoidPtr
func (*Object) ModuleGetDict ¶
Return the dictionary object that implements module’s namespace; this object is the same as the __dict__ attribute of the module object. If module is not a module object (or a subtype of a module object), SystemError is raised and nil is returned.
It is recommended extensions use other Module and Object functions rather than directly manipulate a module’s __dict__.
llgo:link (*Object).ModuleGetDict C.PyModule_GetDict
func (*Object) ModuleLoadSyms ¶
llgo:link (*Object).ModuleLoadSyms C.llgoLoadPyModSyms
func (*Object) NotTrue ¶ added in v0.8.2
Returns 0 if the object o is considered to be true, and 1 otherwise. This is equivalent to the Python expression not o. On failure, return -1.
llgo:link (*Object).NotTrue C.PyObject_Not
func (*Object) Str ¶ added in v0.8.2
Compute a string representation of object o. Returns the string representation on success, nil on failure. This is the equivalent of the Python expression str(o). Called by the str() built-in function and, therefore, by the print() function.
llgo:link (*Object).Str C.PyObject_Str
func (*Object) TupleItem ¶ added in v0.8.2
Return the object at position pos in the tuple pointed to by p. If pos is negative or out of bounds, return nil and set an IndexError exception.
llgo:link (*Object).TupleItem C.PyTuple_GetItem
func (*Object) TupleLen ¶ added in v0.8.2
Take a pointer to a tuple object, and return the size of that tuple.
llgo:link (*Object).TupleLen C.PyTuple_Size
func (*Object) TypeFlags ¶ added in v0.8.2
Return the tp_flags member of type. This function is primarily meant for use with Py_LIMITED_API; the individual flag bits are guaranteed to be stable across Python releases, but access to tp_flags itself is not part of the limited API.
llgo:link (*Object).TypeFlags C.PyType_GetFlags
func (*Object) TypeModule ¶ added in v0.8.2
Return the module object associated with the given type when the type was created using PyType_FromModuleAndSpec().
If no module is associated with the given type, sets TypeError and returns nil.
This function is usually used to get the module in which a method is defined. Note that in such a method, Py_TYPE(self).Module() may not return the intended result. Py_TYPE(self) may be a subclass of the intended class, and subclasses are not necessarily defined in the same module as their superclass. See PyCMethod to get the class that defines the method. See ModuleByDef() for cases when PyCMethod cannot be used.
llgo:link (*Object).TypeModule C.PyType_GetModule
func (*Object) TypeName ¶ added in v0.8.2
Return the type’s name. Equivalent to getting the type’s __name__ attribute.
llgo:link (*Object).TypeName C.PyType_GetName
func (*Object) UlongLong ¶ added in v0.8.2
llgo:link (*Object).UlongLong C.PyLong_AsUnsignedLongLong
func (*Object) Vectorcall ¶
llgo:link (*Object).Vectorcall C.PyObject_Vectorcall
func (*Object) VectorcallDict ¶
llgo:link (*Object).VectorcallDict C.PyObject_VectorcallDict