py_newbytes method

Pointer<UnsignedChar> py_newbytes(
  1. py_OutRef arg0,
  2. int n
)

Create a bytes object with n UNINITIALIZED bytes.

Implementation

ffi.Pointer<ffi.UnsignedChar> py_newbytes(
  py_OutRef arg0,
  int n,
) {
  return _py_newbytes(
    arg0,
    n,
  );
}