We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9153a89 commit 1c61702Copy full SHA for 1c61702
graalpython/com.oracle.graal.python.cext/src/complexobject.c
@@ -239,7 +239,7 @@ PyComplex_FromCComplex(Py_complex cval)
239
return GraalPyComplex_FromDoubles(cval.real, cval.imag);
240
}
241
242
-PyObject * // GraalPy change: remove static
+PyAPI_FUNC(PyObject *) // GraalPy change: expose the function for downcalls
243
complex_subtype_from_doubles(PyTypeObject *type, double real, double imag)
244
{
245
Py_complex c;
0 commit comments