From: Guido van Rossum Date: Fri, 12 Jan 1996 00:55:11 +0000 (+0000) Subject: added decl for PyComplex_AsCComplex X-Git-Tag: v1.4b1~421 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5990592b71199770b213afa416a08f161a16eb42;p=python added decl for PyComplex_AsCComplex --- diff --git a/Include/complexobject.h b/Include/complexobject.h index 09a868313d..93d243e8d5 100644 --- a/Include/complexobject.h +++ b/Include/complexobject.h @@ -42,6 +42,7 @@ extern PyObject *PyComplex_FromDoubles Py_PROTO((double real, double imag)); extern double PyComplex_RealAsDouble Py_PROTO((PyObject *op)); extern double PyComplex_ImagAsDouble Py_PROTO((PyObject *op)); +extern complex PyComplex_AsCComplex Py_PROTO((PyObject *op)); #ifdef __cplusplus }