Py_dup method

int Py_dup(
  1. int fd
)

Implementation

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