PyComplex_FormatAdvancedWriter method

int PyComplex_FormatAdvancedWriter(
  1. Pointer<_PyUnicodeWriter> writer,
  2. Pointer<PyObject> obj,
  3. Pointer<PyObject> format_spec,
  4. int start,
  5. int end,
)

Implementation

int PyComplex_FormatAdvancedWriter(
  ffi.Pointer<_PyUnicodeWriter> writer,
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<PyObject> format_spec,
  int start,
  int end,
) {
  return _PyComplex_FormatAdvancedWriter(
    writer,
    obj,
    format_spec,
    start,
    end,
  );
}