2000-07-09 00:20:36 +00:00
|
|
|
/* Complex number structure */
|
|
|
|
|
2002-10-04 12:43:02 +00:00
|
|
|
#ifndef Py_COMPLEXOBJECT_H
|
|
|
|
#define Py_COMPLEXOBJECT_H
|
1996-01-12 00:47:05 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Complex object interface */
|
|
|
|
|
2002-08-12 07:21:58 +00:00
|
|
|
PyAPI_DATA(PyTypeObject) PyComplex_Type;
|
1996-01-12 00:47:05 +00:00
|
|
|
|
2022-06-16 11:49:43 +00:00
|
|
|
#define PyComplex_Check(op) PyObject_TypeCheck((op), &PyComplex_Type)
|
|
|
|
#define PyComplex_CheckExact(op) Py_IS_TYPE((op), &PyComplex_Type)
|
1996-01-12 00:47:05 +00:00
|
|
|
|
2002-08-12 07:21:58 +00:00
|
|
|
PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
|
1996-01-12 00:47:05 +00:00
|
|
|
|
2002-08-12 07:21:58 +00:00
|
|
|
PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op);
|
|
|
|
PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op);
|
1996-01-12 00:47:05 +00:00
|
|
|
|
2010-12-03 20:14:31 +00:00
|
|
|
#ifndef Py_LIMITED_API
|
2022-04-06 23:05:27 +00:00
|
|
|
# define Py_CPYTHON_COMPLEXOBJECT_H
|
|
|
|
# include "cpython/complexobject.h"
|
|
|
|
# undef Py_CPYTHON_COMPLEXOBJECT_H
|
2010-12-03 20:14:31 +00:00
|
|
|
#endif
|
2009-04-30 01:00:33 +00:00
|
|
|
|
1996-01-12 00:47:05 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2002-10-04 12:43:02 +00:00
|
|
|
#endif /* !Py_COMPLEXOBJECT_H */
|