diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:55:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:55:11 (GMT) |
commit | 5990592b71199770b213afa416a08f161a16eb42 (patch) | |
tree | 113a902e559dd82a407717eefd48d848e5b89211 /Include/complexobject.h | |
parent | 3d1f09557bd447b2e45bf90385391ffc16eafe13 (diff) | |
download | cpython-5990592b71199770b213afa416a08f161a16eb42.zip cpython-5990592b71199770b213afa416a08f161a16eb42.tar.gz cpython-5990592b71199770b213afa416a08f161a16eb42.tar.bz2 |
added decl for PyComplex_AsCComplex
Diffstat (limited to 'Include/complexobject.h')
-rw-r--r-- | Include/complexobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/complexobject.h b/Include/complexobject.h index 09a8683..93d243e 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 } |