py_newnil method

void py_newnil(
  1. py_OutRef arg0
)

Create a nil object. nil is an invalid representation of an object. Don't use it unless you know what you are doing.

Implementation

void py_newnil(
  py_OutRef arg0,
) {
  return _py_newnil(
    arg0,
  );
}