Py_dup method Null safety

int Py_dup (
  1. int fd
)

Implementation

int Py_dup(
  int fd,
) {
  return _Py_dup(
    fd,
  );
}