Ejemplo n.º 1
0
// TODO returns the ...
//
// Return value: New Reference.
func (n *NumberProtocol) InPlaceTrueDivide(obj *Base) (*Base, error) {
	ret := C.PyNumber_InPlaceTrueDivide(cnp(n), obj.c())
	return obj2ObjErr(ret)
}
Ejemplo n.º 2
0
// TODO returns the ...
//
// Return value: New Reference.
func (n *NumberProtocol) InPlaceTrueDivide(obj Object) (Object, error) {
	ret := C.PyNumber_InPlaceTrueDivide(cnp(n), c(obj))
	return obj2ObjErr(ret)
}