Go语言编写CPython扩展goPy.zip
goPy 是一个新的开源项目,实现了用 Go 语言来编写 CPython 扩展。 示例代码: package simple import ( "fmt" "gopy" ) func example(args *py.Tuple) (py.Object, error) { fmt.Printf("simple.example: %v\n", args) py.None.Incref() return py.None, nil } func init() { methods := []py.Method{ {"example", example, "example fu
文件列表
gopy-master.zip
(预估有个67文件)
gopy-master
module_test.go
3KB
LICENSE
1KB
interrupt_test.go
658B
examples
example
example.go
3KB
.gitignore
12B
Makefile
259B
shell
暂无评论