PyCode_New method

Pointer<PyCodeObject> PyCode_New(
  1. int arg0,
  2. int arg1,
  3. int arg2,
  4. int arg3,
  5. int arg4,
  6. Pointer<PyObject> 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. int arg13,
  15. Pointer<PyObject> arg14,
)

Implementation

ffi.Pointer<PyCodeObject> PyCode_New(
  int arg0,
  int arg1,
  int arg2,
  int arg3,
  int arg4,
  ffi.Pointer<PyObject> 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,
  int arg13,
  ffi.Pointer<PyObject> arg14,
) {
  return _PyCode_New(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
    arg5,
    arg6,
    arg7,
    arg8,
    arg9,
    arg10,
    arg11,
    arg12,
    arg13,
    arg14,
  );
}