PyObject_Format method

Pointer<PyObject> PyObject_Format(
  1. Pointer<PyObject> obj,
  2. Pointer<PyObject> format_spec
)

Implementation

ffi.Pointer<PyObject> PyObject_Format(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<PyObject> format_spec,
) {
  return _PyObject_Format(
    obj,
    format_spec,
  );
}