PyCode_NewWithPosOnlyArgs method

Pointer<PyCodeObject> PyCode_NewWithPosOnlyArgs(
  1. int arg0,
  2. int arg1,
  3. int arg2,
  4. int arg3,
  5. int arg4,
  6. int arg5,
  7. Pointer<PyObject> arg6,
  8. Pointer<PyObject> arg7,
  9. Pointer<PyObject> arg8,
  10. Pointer<PyObject> arg9,
  11. Pointer<PyObject> arg10,
  12. Pointer<PyObject> arg11,
  13. Pointer<PyObject> arg12,
  14. Pointer<PyObject> arg13,
  15. int arg14,
  16. Pointer<PyObject> arg15,
)

Implementation

ffi.Pointer<PyCodeObject> PyCode_NewWithPosOnlyArgs(
  int arg0,
  int arg1,
  int arg2,
  int arg3,
  int arg4,
  int arg5,
  ffi.Pointer<PyObject> arg6,
  ffi.Pointer<PyObject> arg7,
  ffi.Pointer<PyObject> arg8,
  ffi.Pointer<PyObject> arg9,
  ffi.Pointer<PyObject> arg10,
  ffi.Pointer<PyObject> arg11,
  ffi.Pointer<PyObject> arg12,
  ffi.Pointer<PyObject> arg13,
  int arg14,
  ffi.Pointer<PyObject> arg15,
) {
  return _PyCode_NewWithPosOnlyArgs(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
    arg5,
    arg6,
    arg7,
    arg8,
    arg9,
    arg10,
    arg11,
    arg12,
    arg13,
    arg14,
    arg15,
  );
}