好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Go语言编写CPython扩展goPy

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 function"},
}
  
_, err := py.InitModule("simple", methods)
if err != nil {
panic(err)
}
} 

github开源项目地址:https://github.com/qur/gopy

查看更多关于Go语言编写CPython扩展goPy的详细内容...

  阅读:40次