mirror of
https://github.com/python/cpython.git
synced 2025-12-31 20:43:36 +00:00
34 lines
951 B
C
34 lines
951 B
C
#ifndef Py_CPYTHON_COMPLEXOBJECT_H
|
|
# error "this header file must not be included directly"
|
|
#endif
|
|
|
|
typedef struct {
|
|
double real;
|
|
double imag;
|
|
} Py_complex;
|
|
|
|
/* Operations on complex numbers (soft deprecated
|
|
since Python 3.15). */
|
|
PyAPI_FUNC(Py_complex) _Py_c_sum(Py_complex, Py_complex);
|
|
PyAPI_FUNC(Py_complex) _Py_c_diff(Py_complex, Py_complex);
|
|
PyAPI_FUNC(Py_complex) _Py_c_neg(Py_complex);
|
|
PyAPI_FUNC(Py_complex) _Py_c_prod(Py_complex, Py_complex);
|
|
PyAPI_FUNC(Py_complex) _Py_c_quot(Py_complex, Py_complex);
|
|
PyAPI_FUNC(Py_complex) _Py_c_pow(Py_complex, Py_complex);
|
|
PyAPI_FUNC(double) _Py_c_abs(Py_complex);
|
|
|
|
|
|
/* Complex object interface */
|
|
|
|
/*
|
|
PyComplexObject represents a complex number with double-precision
|
|
real and imaginary parts.
|
|
*/
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
Py_complex cval;
|
|
} PyComplexObject;
|
|
|
|
PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);
|
|
|
|
PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op);
|