Files
llgo/cl/_testgo/cgofull/pymod2/pymod2.go
Li Jie c9f436cc47 cgo: full test
cgo: test returning void
2024-11-27 18:41:56 +08:00

12 lines
165 B
Go

package pymod2
/*
#cgo pkg-config: python3-embed
#include <Python.h>
*/
import "C"
func Long(l int64) *C.PyObject {
return C.PyLong_FromLongLong(C.longlong(l))
}