cpython/Objects/complexobject.c

656 lines
13 KiB
C
Raw Normal View History

1996-01-11 20:47:05 -04:00
/* Complex object implementation */
/* Borrows heavily from floatobject.c */
#ifndef WITHOUT_COMPLEX
1997-05-02 00:12:38 -03:00
#include "Python.h"
1996-01-11 20:47:05 -04:00
#include "mymath.h"
#ifdef i860
/* Cray APP has bogus definition of HUGE_VAL in <math.h> */
#undef HUGE_VAL
#endif
#ifdef HUGE_VAL
#define CHECK(x) if (errno != 0) ; \
else if (-HUGE_VAL <= (x) && (x) <= HUGE_VAL) ; \
else errno = ERANGE
#else
#define CHECK(x) /* Don't know how to check */
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifndef LONG_MAX
#define LONG_MAX 0X7FFFFFFFL
#endif
#ifndef LONG_MIN
#define LONG_MIN (-LONG_MAX-1)
#endif
#ifdef __NeXT__
#ifdef __sparc__
/*
* This works around a bug in the NS/Sparc 3.3 pre-release
* limits.h header file.
* 10-Feb-1995 bwarsaw@cnri.reston.va.us
*/
#undef LONG_MIN
#define LONG_MIN (-LONG_MAX-1)
#endif
#endif
#if !defined(__STDC__) && !defined(macintosh)
1997-05-02 00:12:38 -03:00
extern double fmod Py_PROTO((double, double));
extern double pow Py_PROTO((double, double));
1996-01-11 20:47:05 -04:00
#endif
/* elementary operations on complex numbers */
1996-05-24 17:45:01 -03:00
static int c_error;
1996-07-20 23:31:35 -03:00
static Py_complex c_1 = {1., 0.};
1996-01-11 20:47:05 -04:00
1996-07-20 23:31:35 -03:00
Py_complex c_sum(a,b)
Py_complex a,b;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
r.real = a.real + b.real;
r.imag = a.imag + b.imag;
return r;
}
1996-07-20 23:31:35 -03:00
Py_complex c_diff(a,b)
Py_complex a,b;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
r.real = a.real - b.real;
r.imag = a.imag - b.imag;
return r;
}
1996-07-20 23:31:35 -03:00
Py_complex c_neg(a)
Py_complex a;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
r.real = -a.real;
r.imag = -a.imag;
return r;
}
1996-07-20 23:31:35 -03:00
Py_complex c_prod(a,b)
Py_complex a,b;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
r.real = a.real*b.real - a.imag*b.imag;
r.imag = a.real*b.imag + a.imag*b.real;
return r;
}
1996-07-20 23:31:35 -03:00
Py_complex c_quot(a,b)
Py_complex a,b;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
double d = b.real*b.real + b.imag*b.imag;
if (d == 0.)
c_error = 1;
r.real = (a.real*b.real + a.imag*b.imag)/d;
r.imag = (a.imag*b.real - a.real*b.imag)/d;
return r;
}
1996-07-20 23:31:35 -03:00
Py_complex c_pow(a,b)
Py_complex a,b;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex r;
1996-01-11 20:47:05 -04:00
double vabs,len,at,phase;
if (b.real == 0. && b.imag == 0.) {
r.real = 1.;
r.imag = 0.;
}
else if (a.real == 0. && a.imag == 0.) {
if (b.imag != 0. || b.real < 0.)
c_error = 2;
r.real = 0.;
r.imag = 0.;
}
else {
vabs = hypot(a.real,a.imag);
len = pow(vabs,b.real);
at = atan2(a.imag, a.real);
phase = at*b.real;
if (b.imag != 0.0) {
len /= exp(at*b.imag);
phase += b.imag*log(vabs);
}
r.real = len*cos(phase);
r.imag = len*sin(phase);
}
return r;
}
1996-07-20 23:31:35 -03:00
static Py_complex c_powu(x, n)
Py_complex x;
1996-01-11 20:47:05 -04:00
long n;
{
Py_complex r, p;
1996-01-11 20:47:05 -04:00
long mask = 1;
r = c_1;
p = x;
1996-01-11 20:47:05 -04:00
while (mask > 0 && n >= mask) {
if (n & mask)
r = c_prod(r,p);
mask <<= 1;
p = c_prod(p,p);
}
return r;
}
1996-07-20 23:31:35 -03:00
static Py_complex c_powi(x, n)
Py_complex x;
1996-01-11 20:47:05 -04:00
long n;
{
1996-07-20 23:31:35 -03:00
Py_complex cn;
1996-01-11 20:47:05 -04:00
if (n > 100 || n < -100) {
cn.real = (double) n;
cn.imag = 0.;
return c_pow(x,cn);
}
else if (n > 0)
return c_powu(x,n);
else
return c_quot(c_1,c_powu(x,-n));
}
PyObject *
PyComplex_FromCComplex(cval)
Py_complex cval;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
register PyComplexObject *op =
(PyComplexObject *) malloc(sizeof(PyComplexObject));
1996-01-11 20:47:05 -04:00
if (op == NULL)
1997-05-02 00:12:38 -03:00
return PyErr_NoMemory();
op->ob_type = &PyComplex_Type;
1996-01-11 20:47:05 -04:00
op->cval = cval;
1997-05-02 00:12:38 -03:00
_Py_NewReference(op);
return (PyObject *) op;
1996-01-11 20:47:05 -04:00
}
PyObject *
PyComplex_FromDoubles(real, imag)
double real, imag;
{
Py_complex c;
c.real = real;
c.imag = imag;
return PyComplex_FromCComplex(c);
1996-01-11 20:47:05 -04:00
}
double
PyComplex_RealAsDouble(op)
PyObject *op;
{
if (PyComplex_Check(op)) {
return ((PyComplexObject *)op)->cval.real;
} else {
return PyFloat_AsDouble(op);
}
1996-01-11 20:47:05 -04:00
}
double
PyComplex_ImagAsDouble(op)
PyObject *op;
{
if (PyComplex_Check(op)) {
return ((PyComplexObject *)op)->cval.imag;
} else {
return 0.0;
}
1996-01-11 20:47:05 -04:00
}
1996-07-20 23:31:35 -03:00
Py_complex
PyComplex_AsCComplex(op)
PyObject *op;
{
1996-07-20 23:31:35 -03:00
Py_complex cv;
1996-01-11 21:21:14 -04:00
if (PyComplex_Check(op)) {
return ((PyComplexObject *)op)->cval;
} else {
cv.real = PyFloat_AsDouble(op);
cv.imag = 0.;
return cv;
}
}
1996-01-11 20:47:05 -04:00
static void
complex_dealloc(op)
1997-05-02 00:12:38 -03:00
PyObject *op;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
PyMem_DEL(op);
1996-01-11 20:47:05 -04:00
}
1996-05-24 17:45:01 -03:00
static void
1996-01-11 20:47:05 -04:00
complex_buf_repr(buf, v)
char *buf;
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
if (v->cval.real == 0.)
sprintf(buf, "%.12gj", v->cval.imag);
1996-01-11 20:47:05 -04:00
else
sprintf(buf, "(%.12g%+.12gj)", v->cval.real, v->cval.imag);
1996-01-11 20:47:05 -04:00
}
static int
complex_print(v, fp, flags)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
FILE *fp;
int flags; /* Not used but required by interface */
{
char buf[100];
complex_buf_repr(buf, v);
fputs(buf, fp);
return 0;
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_repr(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
char buf[100];
complex_buf_repr(buf, v);
1997-05-02 00:12:38 -03:00
return PyString_FromString(buf);
1996-01-11 20:47:05 -04:00
}
static int
complex_compare(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v, *w;
1996-01-11 20:47:05 -04:00
{
/* Note: "greater" and "smaller" have no meaning for complex numbers,
but Python requires that they be defined nevertheless. */
Py_complex i, j;
i = v->cval;
j = w->cval;
1996-01-11 20:47:05 -04:00
if (i.real == j.real && i.imag == j.imag)
return 0;
else if (i.real != j.real)
return (i.real < j.real) ? -1 : 1;
else
return (i.imag < j.imag) ? -1 : 1;
}
static long
complex_hash(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
double intpart, fractpart;
int expo;
long hipart, x;
1996-01-11 20:47:05 -04:00
/* This is designed so that Python numbers with the same
value hash to the same value, otherwise comparisons
of mapping keys will turn out weird */
#ifdef MPW /* MPW C modf expects pointer to extended as second argument */
{
extended e;
fractpart = modf(v->cval.real, &e);
intpart = e;
}
#else
fractpart = modf(v->cval.real, &intpart);
#endif
if (fractpart == 0.0 && v->cval.imag == 0.0) {
1996-01-11 20:47:05 -04:00
if (intpart > 0x7fffffffL || -intpart > 0x7fffffffL) {
/* Convert to long int and use its hash... */
1997-05-02 00:12:38 -03:00
PyObject *w = PyLong_FromDouble(v->cval.real);
1996-01-11 20:47:05 -04:00
if (w == NULL)
return -1;
1997-05-02 00:12:38 -03:00
x = PyObject_Hash(w);
Py_DECREF(w);
1996-01-11 20:47:05 -04:00
return x;
}
x = (long)intpart;
}
else {
fractpart = frexp(fractpart, &expo);
fractpart = fractpart * 2147483648.0; /* 2**31 */
hipart = (long)fractpart; /* Take the top 32 bits */
fractpart = (fractpart - (double)hipart) * 2147483648.0;
/* Get the next 32 bits */
x = hipart + (long)fractpart + (long)intpart + (expo << 15);
/* Combine everything */
if (v->cval.imag != 0.0) { /* Hash the imaginary part */
/* XXX Note that this hashes complex(x, y)
to the same value as complex(y, x).
Still better than it used to be :-) */
#ifdef MPW
{
extended e;
fractpart = modf(v->cval.imag, &e);
intpart = e;
}
#else
fractpart = modf(v->cval.imag, &intpart);
#endif
fractpart = frexp(fractpart, &expo);
fractpart = fractpart * 2147483648.0; /* 2**31 */
hipart = (long)fractpart; /* Take the top 32 bits */
fractpart =
(fractpart - (double)hipart) * 2147483648.0;
/* Get the next 32 bits */
x ^= hipart + (long)fractpart +
(long)intpart + (expo << 15);
/* Combine everything */
}
1996-01-11 20:47:05 -04:00
}
if (x == -1)
x = -2;
return x;
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_add(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
1996-01-11 20:47:05 -04:00
{
Py_complex result;
PyFPE_START_PROTECT("complex_add", return 0)
result = c_sum(v->cval,w->cval);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(result)
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(result);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_sub(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
1996-01-11 20:47:05 -04:00
{
Py_complex result;
PyFPE_START_PROTECT("complex_sub", return 0)
result = c_diff(v->cval,w->cval);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(result)
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(result);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_mul(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
1996-01-11 20:47:05 -04:00
{
Py_complex result;
PyFPE_START_PROTECT("complex_mul", return 0)
result = c_prod(v->cval,w->cval);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(result)
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(result);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_div(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex quot;
PyFPE_START_PROTECT("complex_div", return 0)
1996-01-11 20:47:05 -04:00
c_error = 0;
quot = c_quot(v->cval,w->cval);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(quot)
1996-01-11 20:47:05 -04:00
if (c_error == 1) {
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_ZeroDivisionError, "complex division");
1996-01-11 20:47:05 -04:00
return NULL;
}
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(quot);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
complex_remainder(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
{
Py_complex div, mod;
c_error = 0;
div = c_quot(v->cval,w->cval); /* The raw divisor value. */
if (c_error == 1) {
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_ZeroDivisionError, "complex remainder");
return NULL;
}
div.real = floor(div.real); /* Use the floor of the real part. */
div.imag = 0.0;
mod = c_diff(v->cval, c_prod(w->cval, div));
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(mod);
}
1997-05-02 00:12:38 -03:00
static PyObject *
complex_divmod(v, w)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyComplexObject *w;
{
Py_complex div, mod;
PyObject *d, *m, *z;
c_error = 0;
div = c_quot(v->cval,w->cval); /* The raw divisor value. */
if (c_error == 1) {
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_ZeroDivisionError, "complex divmod()");
return NULL;
}
div.real = floor(div.real); /* Use the floor of the real part. */
div.imag = 0.0;
mod = c_diff(v->cval, c_prod(w->cval, div));
1997-05-02 00:12:38 -03:00
d = PyComplex_FromCComplex(div);
m = PyComplex_FromCComplex(mod);
z = Py_BuildValue("(OO)", d, m);
Py_XDECREF(d);
Py_XDECREF(m);
return z;
}
1996-01-11 20:47:05 -04:00
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_pow(v, w, z)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
PyObject *w;
PyComplexObject *z;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex p;
Py_complex exponent;
1996-01-11 20:47:05 -04:00
long int_exponent;
1997-05-02 00:12:38 -03:00
if ((PyObject *)z!=Py_None) {
PyErr_SetString(PyExc_ValueError, "complex modulo");
1996-01-11 20:47:05 -04:00
return NULL;
}
PyFPE_START_PROTECT("complex_pow", return 0)
1996-01-11 20:47:05 -04:00
c_error = 0;
1997-05-02 00:12:38 -03:00
exponent = ((PyComplexObject*)w)->cval;
1996-01-11 20:47:05 -04:00
int_exponent = (long)exponent.real;
if (exponent.imag == 0. && exponent.real == int_exponent)
p = c_powi(v->cval,int_exponent);
else
p = c_pow(v->cval,exponent);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(p)
1996-01-11 20:47:05 -04:00
if (c_error == 2) {
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_ValueError,
"0.0 to a negative or complex power");
1996-01-11 20:47:05 -04:00
return NULL;
}
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(p);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_neg(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex neg;
1996-01-11 20:47:05 -04:00
neg.real = -v->cval.real;
neg.imag = -v->cval.imag;
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(neg);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_pos(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
Py_INCREF(v);
return (PyObject *)v;
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_abs(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
double result;
PyFPE_START_PROTECT("complex_abs", return 0)
result = hypot(v->cval.real,v->cval.imag);
1997-03-14 00:32:50 -04:00
PyFPE_END_PROTECT(result)
1997-05-02 00:12:38 -03:00
return PyFloat_FromDouble(result);
1996-01-11 20:47:05 -04:00
}
static int
complex_nonzero(v)
1997-05-02 00:12:38 -03:00
PyComplexObject *v;
1996-01-11 20:47:05 -04:00
{
return v->cval.real != 0.0 && v->cval.imag != 0.0;
}
static int
complex_coerce(pv, pw)
1997-05-02 00:12:38 -03:00
PyObject **pv;
PyObject **pw;
1996-01-11 20:47:05 -04:00
{
1996-07-20 23:31:35 -03:00
Py_complex cval;
1996-01-11 20:47:05 -04:00
cval.imag = 0.;
1997-05-02 00:12:38 -03:00
if (PyInt_Check(*pw)) {
cval.real = (double)PyInt_AsLong(*pw);
*pw = PyComplex_FromCComplex(cval);
Py_INCREF(*pv);
1996-01-11 20:47:05 -04:00
return 0;
}
1997-05-02 00:12:38 -03:00
else if (PyLong_Check(*pw)) {
cval.real = PyLong_AsDouble(*pw);
*pw = PyComplex_FromCComplex(cval);
Py_INCREF(*pv);
1996-01-11 20:47:05 -04:00
return 0;
}
1997-05-02 00:12:38 -03:00
else if (PyFloat_Check(*pw)) {
cval.real = PyFloat_AsDouble(*pw);
*pw = PyComplex_FromCComplex(cval);
Py_INCREF(*pv);
1996-01-11 20:47:05 -04:00
return 0;
}
return 1; /* Can't do it */
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_int(v)
1997-05-02 00:12:38 -03:00
PyObject *v;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_TypeError,
"can't convert complex to int; use e.g. int(abs(z))");
return NULL;
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_long(v)
1997-05-02 00:12:38 -03:00
PyObject *v;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_TypeError,
"can't convert complex to long; use e.g. long(abs(z))");
return NULL;
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_float(v)
1997-05-02 00:12:38 -03:00
PyObject *v;
1996-01-11 20:47:05 -04:00
{
1997-05-02 00:12:38 -03:00
PyErr_SetString(PyExc_TypeError,
"can't convert complex to float; use e.g. abs(z)");
return NULL;
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_conjugate(self)
1997-05-02 00:12:38 -03:00
PyObject *self;
1996-01-11 20:47:05 -04:00
{
Py_complex c;
1997-05-02 00:12:38 -03:00
c = ((PyComplexObject *)self)->cval;
1996-01-11 20:47:05 -04:00
c.imag = -c.imag;
1997-05-02 00:12:38 -03:00
return PyComplex_FromCComplex(c);
1996-01-11 20:47:05 -04:00
}
static PyMethodDef complex_methods[] = {
{"conjugate", (PyCFunction)complex_conjugate, 1},
{NULL, NULL} /* sentinel */
};
1997-05-02 00:12:38 -03:00
static PyObject *
1996-01-11 20:47:05 -04:00
complex_getattr(self, name)
1997-05-02 00:12:38 -03:00
PyComplexObject *self;
1996-01-11 20:47:05 -04:00
char *name;
{
if (strcmp(name, "real") == 0)
1997-05-02 00:12:38 -03:00
return (PyObject *)PyFloat_FromDouble(self->cval.real);
1996-01-11 20:47:05 -04:00
else if (strcmp(name, "imag") == 0)
1997-05-02 00:12:38 -03:00
return (PyObject *)PyFloat_FromDouble(self->cval.imag);
else if (strcmp(name, "__members__") == 0)
1997-05-02 00:12:38 -03:00
return Py_BuildValue("[ss]", "imag", "real");
return Py_FindMethod(complex_methods, (PyObject *)self, name);
1996-01-11 20:47:05 -04:00
}
1997-05-02 00:12:38 -03:00
static PyNumberMethods complex_as_number = {
1996-01-11 20:47:05 -04:00
(binaryfunc)complex_add, /*nb_add*/
(binaryfunc)complex_sub, /*nb_subtract*/
(binaryfunc)complex_mul, /*nb_multiply*/
(binaryfunc)complex_div, /*nb_divide*/
(binaryfunc)complex_remainder, /*nb_remainder*/
(binaryfunc)complex_divmod, /*nb_divmod*/
1996-01-11 20:47:05 -04:00
(ternaryfunc)complex_pow, /*nb_power*/
(unaryfunc)complex_neg, /*nb_negative*/
(unaryfunc)complex_pos, /*nb_positive*/
(unaryfunc)complex_abs, /*nb_absolute*/
(inquiry)complex_nonzero, /*nb_nonzero*/
0, /*nb_invert*/
0, /*nb_lshift*/
0, /*nb_rshift*/
0, /*nb_and*/
0, /*nb_xor*/
0, /*nb_or*/
(coercion)complex_coerce, /*nb_coerce*/
(unaryfunc)complex_int, /*nb_int*/
(unaryfunc)complex_long, /*nb_long*/
(unaryfunc)complex_float, /*nb_float*/
0, /*nb_oct*/
0, /*nb_hex*/
};
1997-05-02 00:12:38 -03:00
PyTypeObject PyComplex_Type = {
PyObject_HEAD_INIT(&PyType_Type)
1996-01-11 20:47:05 -04:00
0,
"complex",
1997-05-02 00:12:38 -03:00
sizeof(PyComplexObject),
1996-01-11 20:47:05 -04:00
0,
(destructor)complex_dealloc, /*tp_dealloc*/
(printfunc)complex_print, /*tp_print*/
(getattrfunc)complex_getattr, /*tp_getattr*/
0, /*tp_setattr*/
(cmpfunc)complex_compare, /*tp_compare*/
(reprfunc)complex_repr, /*tp_repr*/
&complex_as_number, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
(hashfunc)complex_hash, /*tp_hash*/
};
#endif