py_newboundmethod method

void py_newboundmethod(
  1. py_OutRef out,
  2. py_Ref self,
  3. py_Ref func
)

Create a boundmethod object.

Implementation

void py_newboundmethod(
  py_OutRef out,
  py_Ref self,
  py_Ref func,
) {
  return _py_newboundmethod(
    out,
    self,
    func,
  );
}