PyComplex_FromDoubles method Null safety
Implementation
ffi.Pointer<PyObject> PyComplex_FromDoubles(
double real,
double imag,
) {
return _PyComplex_FromDoubles(
real,
imag,
);
}
ffi.Pointer<PyObject> PyComplex_FromDoubles(
double real,
double imag,
) {
return _PyComplex_FromDoubles(
real,
imag,
);
}