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