コード例 #1
0
ファイル: type.go プロジェクト: MogeiWang/py
func (t *Type) Alloc(n int64) (*Base, error) {
	ret := C.typeAlloc(t.c(), C.Py_ssize_t(n))
	return obj2ObjErr(ret)
}
コード例 #2
0
ファイル: type.go プロジェクト: ericsnowcurrently/qur-gopy
func (t *Type) Alloc(n int64) (Object, error) {
	ret := C.typeAlloc(c(t), C.Py_ssize_t(n))
	return obj2ObjErr(ret)
}