Guido van Rossum | 9678394 | 1997-05-20 18:21:34 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 2 | /* Complex object implementation */ |
| 3 | |
| 4 | /* Borrows heavily from floatobject.c */ |
| 5 | |
Guido van Rossum | 9678394 | 1997-05-20 18:21:34 +0000 | [diff] [blame] | 6 | /* Submitted by Jim Hugunin */ |
| 7 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 8 | #include "Python.h" |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 9 | #include "structmember.h" |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 10 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 11 | /* elementary operations on complex numbers */ |
| 12 | |
Guido van Rossum | 9e720e3 | 1996-07-21 02:31:35 +0000 | [diff] [blame] | 13 | static Py_complex c_1 = {1., 0.}; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 14 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 15 | Py_complex |
| 16 | c_sum(Py_complex a, Py_complex b) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 17 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 18 | Py_complex r; |
| 19 | r.real = a.real + b.real; |
| 20 | r.imag = a.imag + b.imag; |
| 21 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 22 | } |
| 23 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 24 | Py_complex |
| 25 | c_diff(Py_complex a, Py_complex b) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 26 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 27 | Py_complex r; |
| 28 | r.real = a.real - b.real; |
| 29 | r.imag = a.imag - b.imag; |
| 30 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 33 | Py_complex |
| 34 | c_neg(Py_complex a) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 35 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 36 | Py_complex r; |
| 37 | r.real = -a.real; |
| 38 | r.imag = -a.imag; |
| 39 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 40 | } |
| 41 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 42 | Py_complex |
| 43 | c_prod(Py_complex a, Py_complex b) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 44 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 45 | Py_complex r; |
| 46 | r.real = a.real*b.real - a.imag*b.imag; |
| 47 | r.imag = a.real*b.imag + a.imag*b.real; |
| 48 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 51 | Py_complex |
| 52 | c_quot(Py_complex a, Py_complex b) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 53 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 54 | /****************************************************************** |
| 55 | This was the original algorithm. It's grossly prone to spurious |
| 56 | overflow and underflow errors. It also merrily divides by 0 despite |
| 57 | checking for that(!). The code still serves a doc purpose here, as |
| 58 | the algorithm following is a simple by-cases transformation of this |
| 59 | one: |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 60 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 61 | Py_complex r; |
| 62 | double d = b.real*b.real + b.imag*b.imag; |
| 63 | if (d == 0.) |
| 64 | errno = EDOM; |
| 65 | r.real = (a.real*b.real + a.imag*b.imag)/d; |
| 66 | r.imag = (a.imag*b.real - a.real*b.imag)/d; |
| 67 | return r; |
| 68 | ******************************************************************/ |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 69 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 70 | /* This algorithm is better, and is pretty obvious: first divide the |
| 71 | * numerators and denominator by whichever of {b.real, b.imag} has |
| 72 | * larger magnitude. The earliest reference I found was to CACM |
| 73 | * Algorithm 116 (Complex Division, Robert L. Smith, Stanford |
| 74 | * University). As usual, though, we're still ignoring all IEEE |
| 75 | * endcases. |
| 76 | */ |
| 77 | Py_complex r; /* the result */ |
| 78 | const double abs_breal = b.real < 0 ? -b.real : b.real; |
| 79 | const double abs_bimag = b.imag < 0 ? -b.imag : b.imag; |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 80 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 81 | if (abs_breal >= abs_bimag) { |
| 82 | /* divide tops and bottom by b.real */ |
| 83 | if (abs_breal == 0.0) { |
| 84 | errno = EDOM; |
| 85 | r.real = r.imag = 0.0; |
| 86 | } |
| 87 | else { |
| 88 | const double ratio = b.imag / b.real; |
| 89 | const double denom = b.real + b.imag * ratio; |
| 90 | r.real = (a.real + a.imag * ratio) / denom; |
| 91 | r.imag = (a.imag - a.real * ratio) / denom; |
| 92 | } |
| 93 | } |
| 94 | else { |
| 95 | /* divide tops and bottom by b.imag */ |
| 96 | const double ratio = b.real / b.imag; |
| 97 | const double denom = b.real * ratio + b.imag; |
| 98 | assert(b.imag != 0.0); |
| 99 | r.real = (a.real * ratio + a.imag) / denom; |
| 100 | r.imag = (a.imag * ratio - a.real) / denom; |
| 101 | } |
| 102 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 105 | Py_complex |
| 106 | c_pow(Py_complex a, Py_complex b) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 107 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 108 | Py_complex r; |
| 109 | double vabs,len,at,phase; |
| 110 | if (b.real == 0. && b.imag == 0.) { |
| 111 | r.real = 1.; |
| 112 | r.imag = 0.; |
| 113 | } |
| 114 | else if (a.real == 0. && a.imag == 0.) { |
| 115 | if (b.imag != 0. || b.real < 0.) |
| 116 | errno = EDOM; |
| 117 | r.real = 0.; |
| 118 | r.imag = 0.; |
| 119 | } |
| 120 | else { |
| 121 | vabs = hypot(a.real,a.imag); |
| 122 | len = pow(vabs,b.real); |
| 123 | at = atan2(a.imag, a.real); |
| 124 | phase = at*b.real; |
| 125 | if (b.imag != 0.0) { |
| 126 | len /= exp(at*b.imag); |
| 127 | phase += b.imag*log(vabs); |
| 128 | } |
| 129 | r.real = len*cos(phase); |
| 130 | r.imag = len*sin(phase); |
| 131 | } |
| 132 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 135 | static Py_complex |
| 136 | c_powu(Py_complex x, long n) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 137 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 138 | Py_complex r, p; |
| 139 | long mask = 1; |
| 140 | r = c_1; |
| 141 | p = x; |
| 142 | while (mask > 0 && n >= mask) { |
| 143 | if (n & mask) |
| 144 | r = c_prod(r,p); |
| 145 | mask <<= 1; |
| 146 | p = c_prod(p,p); |
| 147 | } |
| 148 | return r; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Tim Peters | 0f33604 | 2001-03-18 08:21:57 +0000 | [diff] [blame] | 151 | static Py_complex |
| 152 | c_powi(Py_complex x, long n) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 153 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 154 | Py_complex cn; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 155 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 156 | if (n > 100 || n < -100) { |
| 157 | cn.real = (double) n; |
| 158 | cn.imag = 0.; |
| 159 | return c_pow(x,cn); |
| 160 | } |
| 161 | else if (n > 0) |
| 162 | return c_powu(x,n); |
| 163 | else |
| 164 | return c_quot(c_1,c_powu(x,-n)); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 165 | |
| 166 | } |
| 167 | |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 168 | double |
| 169 | c_abs(Py_complex z) |
| 170 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 171 | /* sets errno = ERANGE on overflow; otherwise errno = 0 */ |
| 172 | double result; |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 173 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 174 | if (!Py_IS_FINITE(z.real) || !Py_IS_FINITE(z.imag)) { |
| 175 | /* C99 rules: if either the real or the imaginary part is an |
| 176 | infinity, return infinity, even if the other part is a |
| 177 | NaN. */ |
| 178 | if (Py_IS_INFINITY(z.real)) { |
| 179 | result = fabs(z.real); |
| 180 | errno = 0; |
| 181 | return result; |
| 182 | } |
| 183 | if (Py_IS_INFINITY(z.imag)) { |
| 184 | result = fabs(z.imag); |
| 185 | errno = 0; |
| 186 | return result; |
| 187 | } |
| 188 | /* either the real or imaginary part is a NaN, |
| 189 | and neither is infinite. Result should be NaN. */ |
| 190 | return Py_NAN; |
| 191 | } |
| 192 | result = hypot(z.real, z.imag); |
| 193 | if (!Py_IS_FINITE(result)) |
| 194 | errno = ERANGE; |
| 195 | else |
| 196 | errno = 0; |
| 197 | return result; |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 200 | static PyObject * |
| 201 | complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) |
| 202 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | PyObject *op; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 204 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 205 | op = type->tp_alloc(type, 0); |
| 206 | if (op != NULL) |
| 207 | ((PyComplexObject *)op)->cval = cval; |
| 208 | return op; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 211 | PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 212 | PyComplex_FromCComplex(Py_complex cval) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 213 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 214 | register PyComplexObject *op; |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 215 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 216 | /* Inline PyObject_New */ |
| 217 | op = (PyComplexObject *) PyObject_MALLOC(sizeof(PyComplexObject)); |
| 218 | if (op == NULL) |
| 219 | return PyErr_NoMemory(); |
| 220 | PyObject_INIT(op, &PyComplex_Type); |
| 221 | op->cval = cval; |
| 222 | return (PyObject *) op; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 225 | static PyObject * |
| 226 | complex_subtype_from_doubles(PyTypeObject *type, double real, double imag) |
| 227 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 228 | Py_complex c; |
| 229 | c.real = real; |
| 230 | c.imag = imag; |
| 231 | return complex_subtype_from_c_complex(type, c); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 234 | PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 235 | PyComplex_FromDoubles(double real, double imag) |
Guido van Rossum | 926518b | 1996-08-19 19:30:45 +0000 | [diff] [blame] | 236 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 237 | Py_complex c; |
| 238 | c.real = real; |
| 239 | c.imag = imag; |
| 240 | return PyComplex_FromCComplex(c); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | double |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 244 | PyComplex_RealAsDouble(PyObject *op) |
Guido van Rossum | 926518b | 1996-08-19 19:30:45 +0000 | [diff] [blame] | 245 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 246 | if (PyComplex_Check(op)) { |
| 247 | return ((PyComplexObject *)op)->cval.real; |
| 248 | } |
| 249 | else { |
| 250 | return PyFloat_AsDouble(op); |
| 251 | } |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | double |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 255 | PyComplex_ImagAsDouble(PyObject *op) |
Guido van Rossum | 926518b | 1996-08-19 19:30:45 +0000 | [diff] [blame] | 256 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 257 | if (PyComplex_Check(op)) { |
| 258 | return ((PyComplexObject *)op)->cval.imag; |
| 259 | } |
| 260 | else { |
| 261 | return 0.0; |
| 262 | } |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Benjamin Peterson | aea4428 | 2010-01-04 01:10:28 +0000 | [diff] [blame] | 265 | static PyObject * |
| 266 | try_complex_special_method(PyObject *op) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 267 | PyObject *f; |
| 268 | static PyObject *complexstr; |
Benjamin Peterson | aea4428 | 2010-01-04 01:10:28 +0000 | [diff] [blame] | 269 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 270 | f = _PyObject_LookupSpecial(op, "__complex__", &complexstr); |
| 271 | if (f) { |
| 272 | PyObject *res = PyObject_CallFunctionObjArgs(f, NULL); |
| 273 | Py_DECREF(f); |
| 274 | return res; |
| 275 | } |
| 276 | return NULL; |
Benjamin Peterson | aea4428 | 2010-01-04 01:10:28 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Guido van Rossum | 9e720e3 | 1996-07-21 02:31:35 +0000 | [diff] [blame] | 279 | Py_complex |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 280 | PyComplex_AsCComplex(PyObject *op) |
Guido van Rossum | 926518b | 1996-08-19 19:30:45 +0000 | [diff] [blame] | 281 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 282 | Py_complex cv; |
| 283 | PyObject *newop = NULL; |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 284 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 285 | assert(op); |
| 286 | /* If op is already of type PyComplex_Type, return its value */ |
| 287 | if (PyComplex_Check(op)) { |
| 288 | return ((PyComplexObject *)op)->cval; |
| 289 | } |
| 290 | /* If not, use op's __complex__ method, if it exists */ |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 291 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 292 | /* return -1 on failure */ |
| 293 | cv.real = -1.; |
| 294 | cv.imag = 0.; |
| 295 | |
| 296 | newop = try_complex_special_method(op); |
| 297 | |
| 298 | if (newop) { |
| 299 | if (!PyComplex_Check(newop)) { |
| 300 | PyErr_SetString(PyExc_TypeError, |
| 301 | "__complex__ should return a complex object"); |
| 302 | Py_DECREF(newop); |
| 303 | return cv; |
| 304 | } |
| 305 | cv = ((PyComplexObject *)newop)->cval; |
| 306 | Py_DECREF(newop); |
| 307 | return cv; |
| 308 | } |
| 309 | else if (PyErr_Occurred()) { |
| 310 | return cv; |
| 311 | } |
| 312 | /* If neither of the above works, interpret op as a float giving the |
| 313 | real part of the result, and fill in the imaginary part as 0. */ |
| 314 | else { |
| 315 | /* PyFloat_AsDouble will return -1 on failure */ |
| 316 | cv.real = PyFloat_AsDouble(op); |
| 317 | return cv; |
| 318 | } |
Guido van Rossum | cf3d108 | 1996-01-12 01:21:14 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 321 | static void |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 322 | complex_dealloc(PyObject *op) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 323 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 324 | op->ob_type->tp_free(op); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 328 | static PyObject * |
Eric Smith | 6337622 | 2009-05-05 14:04:18 +0000 | [diff] [blame] | 329 | complex_format(PyComplexObject *v, int precision, char format_code) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 330 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 331 | PyObject *result = NULL; |
| 332 | Py_ssize_t len; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 333 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 334 | /* If these are non-NULL, they'll need to be freed. */ |
| 335 | char *pre = NULL; |
| 336 | char *im = NULL; |
| 337 | char *buf = NULL; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 338 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 339 | /* These do not need to be freed. re is either an alias |
| 340 | for pre or a pointer to a constant. lead and tail |
| 341 | are pointers to constants. */ |
| 342 | char *re = NULL; |
| 343 | char *lead = ""; |
| 344 | char *tail = ""; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 345 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 346 | if (v->cval.real == 0. && copysign(1.0, v->cval.real)==1.0) { |
| 347 | re = ""; |
| 348 | im = PyOS_double_to_string(v->cval.imag, format_code, |
| 349 | precision, 0, NULL); |
| 350 | if (!im) { |
| 351 | PyErr_NoMemory(); |
| 352 | goto done; |
| 353 | } |
| 354 | } else { |
| 355 | /* Format imaginary part with sign, real part without */ |
| 356 | pre = PyOS_double_to_string(v->cval.real, format_code, |
| 357 | precision, 0, NULL); |
| 358 | if (!pre) { |
| 359 | PyErr_NoMemory(); |
| 360 | goto done; |
| 361 | } |
| 362 | re = pre; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 363 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 364 | im = PyOS_double_to_string(v->cval.imag, format_code, |
| 365 | precision, Py_DTSF_SIGN, NULL); |
| 366 | if (!im) { |
| 367 | PyErr_NoMemory(); |
| 368 | goto done; |
| 369 | } |
| 370 | lead = "("; |
| 371 | tail = ")"; |
| 372 | } |
| 373 | /* Alloc the final buffer. Add one for the "j" in the format string, |
| 374 | and one for the trailing zero. */ |
| 375 | len = strlen(lead) + strlen(re) + strlen(im) + strlen(tail) + 2; |
| 376 | buf = PyMem_Malloc(len); |
| 377 | if (!buf) { |
| 378 | PyErr_NoMemory(); |
| 379 | goto done; |
| 380 | } |
| 381 | PyOS_snprintf(buf, len, "%s%s%sj%s", lead, re, im, tail); |
| 382 | result = PyUnicode_FromString(buf); |
Mark Dickinson | ad476da | 2009-04-23 19:14:16 +0000 | [diff] [blame] | 383 | done: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 384 | PyMem_Free(im); |
| 385 | PyMem_Free(pre); |
| 386 | PyMem_Free(buf); |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 387 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 388 | return result; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 391 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 392 | complex_repr(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 393 | { |
Eric Smith | 6337622 | 2009-05-05 14:04:18 +0000 | [diff] [blame] | 394 | return complex_format(v, 0, 'r'); |
Tim Peters | 7069512 | 2001-03-11 08:37:29 +0000 | [diff] [blame] | 395 | } |
| 396 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 397 | static long |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 398 | complex_hash(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 399 | { |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 400 | unsigned long hashreal, hashimag, combined; |
| 401 | hashreal = (unsigned long)_Py_HashDouble(v->cval.real); |
| 402 | if (hashreal == (unsigned long)-1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 403 | return -1; |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 404 | hashimag = (unsigned long)_Py_HashDouble(v->cval.imag); |
| 405 | if (hashimag == (unsigned long)-1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 406 | return -1; |
| 407 | /* Note: if the imaginary part is 0, hashimag is 0 now, |
| 408 | * so the following returns hashreal unchanged. This is |
| 409 | * important because numbers of different types that |
| 410 | * compare equal must have the same hash value, so that |
| 411 | * hash(x + 0*j) must equal hash(x). |
| 412 | */ |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 413 | combined = hashreal + _PyHASH_IMAG * hashimag; |
| 414 | if (combined == (unsigned long)-1) |
| 415 | combined = (unsigned long)-2; |
| 416 | return (long)combined; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 417 | } |
| 418 | |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 419 | /* This macro may return! */ |
| 420 | #define TO_COMPLEX(obj, c) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 421 | if (PyComplex_Check(obj)) \ |
| 422 | c = ((PyComplexObject *)(obj))->cval; \ |
| 423 | else if (to_complex(&(obj), &(c)) < 0) \ |
| 424 | return (obj) |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 425 | |
| 426 | static int |
| 427 | to_complex(PyObject **pobj, Py_complex *pc) |
| 428 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 429 | PyObject *obj = *pobj; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 430 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 431 | pc->real = pc->imag = 0.0; |
| 432 | if (PyLong_Check(obj)) { |
| 433 | pc->real = PyLong_AsDouble(obj); |
| 434 | if (pc->real == -1.0 && PyErr_Occurred()) { |
| 435 | *pobj = NULL; |
| 436 | return -1; |
| 437 | } |
| 438 | return 0; |
| 439 | } |
| 440 | if (PyFloat_Check(obj)) { |
| 441 | pc->real = PyFloat_AsDouble(obj); |
| 442 | return 0; |
| 443 | } |
| 444 | Py_INCREF(Py_NotImplemented); |
| 445 | *pobj = Py_NotImplemented; |
| 446 | return -1; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 447 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 448 | |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 449 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 450 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 451 | complex_add(PyObject *v, PyObject *w) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 452 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 453 | Py_complex result; |
| 454 | Py_complex a, b; |
| 455 | TO_COMPLEX(v, a); |
| 456 | TO_COMPLEX(w, b); |
| 457 | PyFPE_START_PROTECT("complex_add", return 0) |
| 458 | result = c_sum(a, b); |
| 459 | PyFPE_END_PROTECT(result) |
| 460 | return PyComplex_FromCComplex(result); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 463 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 464 | complex_sub(PyObject *v, PyObject *w) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 465 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 466 | Py_complex result; |
| 467 | Py_complex a, b; |
| 468 | TO_COMPLEX(v, a); |
| 469 | TO_COMPLEX(w, b); |
| 470 | PyFPE_START_PROTECT("complex_sub", return 0) |
| 471 | result = c_diff(a, b); |
| 472 | PyFPE_END_PROTECT(result) |
| 473 | return PyComplex_FromCComplex(result); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 476 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 477 | complex_mul(PyObject *v, PyObject *w) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 478 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 479 | Py_complex result; |
| 480 | Py_complex a, b; |
| 481 | TO_COMPLEX(v, a); |
| 482 | TO_COMPLEX(w, b); |
| 483 | PyFPE_START_PROTECT("complex_mul", return 0) |
| 484 | result = c_prod(a, b); |
| 485 | PyFPE_END_PROTECT(result) |
| 486 | return PyComplex_FromCComplex(result); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 489 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 490 | complex_div(PyObject *v, PyObject *w) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 491 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 492 | Py_complex quot; |
| 493 | Py_complex a, b; |
| 494 | TO_COMPLEX(v, a); |
| 495 | TO_COMPLEX(w, b); |
| 496 | PyFPE_START_PROTECT("complex_div", return 0) |
| 497 | errno = 0; |
| 498 | quot = c_quot(a, b); |
| 499 | PyFPE_END_PROTECT(quot) |
| 500 | if (errno == EDOM) { |
| 501 | PyErr_SetString(PyExc_ZeroDivisionError, "complex division by zero"); |
| 502 | return NULL; |
| 503 | } |
| 504 | return PyComplex_FromCComplex(quot); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 507 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 508 | complex_remainder(PyObject *v, PyObject *w) |
Guido van Rossum | ee09fc1 | 1996-09-11 13:55:55 +0000 | [diff] [blame] | 509 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 510 | PyErr_SetString(PyExc_TypeError, |
| 511 | "can't mod complex numbers."); |
| 512 | return NULL; |
Guido van Rossum | ee09fc1 | 1996-09-11 13:55:55 +0000 | [diff] [blame] | 513 | } |
| 514 | |
Guido van Rossum | ee09fc1 | 1996-09-11 13:55:55 +0000 | [diff] [blame] | 515 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 516 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 517 | complex_divmod(PyObject *v, PyObject *w) |
Guido van Rossum | 3be12e9 | 1996-09-12 20:56:18 +0000 | [diff] [blame] | 518 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 519 | PyErr_SetString(PyExc_TypeError, |
| 520 | "can't take floor or mod of complex number."); |
| 521 | return NULL; |
Guido van Rossum | 3be12e9 | 1996-09-12 20:56:18 +0000 | [diff] [blame] | 522 | } |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 523 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 524 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 525 | complex_pow(PyObject *v, PyObject *w, PyObject *z) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 526 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 527 | Py_complex p; |
| 528 | Py_complex exponent; |
| 529 | long int_exponent; |
| 530 | Py_complex a, b; |
| 531 | TO_COMPLEX(v, a); |
| 532 | TO_COMPLEX(w, b); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 533 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 534 | if (z != Py_None) { |
| 535 | PyErr_SetString(PyExc_ValueError, "complex modulo"); |
| 536 | return NULL; |
| 537 | } |
| 538 | PyFPE_START_PROTECT("complex_pow", return 0) |
| 539 | errno = 0; |
| 540 | exponent = b; |
| 541 | int_exponent = (long)exponent.real; |
| 542 | if (exponent.imag == 0. && exponent.real == int_exponent) |
| 543 | p = c_powi(a, int_exponent); |
| 544 | else |
| 545 | p = c_pow(a, exponent); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 546 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 547 | PyFPE_END_PROTECT(p) |
| 548 | Py_ADJUST_ERANGE2(p.real, p.imag); |
| 549 | if (errno == EDOM) { |
| 550 | PyErr_SetString(PyExc_ZeroDivisionError, |
| 551 | "0.0 to a negative or complex power"); |
| 552 | return NULL; |
| 553 | } |
| 554 | else if (errno == ERANGE) { |
| 555 | PyErr_SetString(PyExc_OverflowError, |
| 556 | "complex exponentiation"); |
| 557 | return NULL; |
| 558 | } |
| 559 | return PyComplex_FromCComplex(p); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 562 | static PyObject * |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 563 | complex_int_div(PyObject *v, PyObject *w) |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 564 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 565 | PyErr_SetString(PyExc_TypeError, |
| 566 | "can't take floor of complex number."); |
| 567 | return NULL; |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 571 | complex_neg(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 572 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 573 | Py_complex neg; |
| 574 | neg.real = -v->cval.real; |
| 575 | neg.imag = -v->cval.imag; |
| 576 | return PyComplex_FromCComplex(neg); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 577 | } |
| 578 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 579 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 580 | complex_pos(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 581 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 582 | if (PyComplex_CheckExact(v)) { |
| 583 | Py_INCREF(v); |
| 584 | return (PyObject *)v; |
| 585 | } |
| 586 | else |
| 587 | return PyComplex_FromCComplex(v->cval); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 590 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 591 | complex_abs(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 592 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 593 | double result; |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 594 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 595 | PyFPE_START_PROTECT("complex_abs", return 0) |
| 596 | result = c_abs(v->cval); |
| 597 | PyFPE_END_PROTECT(result) |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 598 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 599 | if (errno == ERANGE) { |
| 600 | PyErr_SetString(PyExc_OverflowError, |
| 601 | "absolute value too large"); |
| 602 | return NULL; |
| 603 | } |
| 604 | return PyFloat_FromDouble(result); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | static int |
Jack Diederich | 4dafcc4 | 2006-11-28 19:15:13 +0000 | [diff] [blame] | 608 | complex_bool(PyComplexObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 609 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 610 | return v->cval.real != 0.0 || v->cval.imag != 0.0; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 613 | static PyObject * |
Guido van Rossum | be4cbb1 | 2001-01-18 01:12:39 +0000 | [diff] [blame] | 614 | complex_richcompare(PyObject *v, PyObject *w, int op) |
| 615 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 616 | PyObject *res; |
Mark Dickinson | cc6a982 | 2010-05-21 14:55:26 +0000 | [diff] [blame] | 617 | Py_complex i; |
| 618 | int equal; |
Guido van Rossum | be4cbb1 | 2001-01-18 01:12:39 +0000 | [diff] [blame] | 619 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 620 | if (op != Py_EQ && op != Py_NE) { |
Mark Dickinson | cc6a982 | 2010-05-21 14:55:26 +0000 | [diff] [blame] | 621 | goto Unimplemented; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 622 | } |
Guido van Rossum | 2205642 | 2001-09-24 17:52:04 +0000 | [diff] [blame] | 623 | |
Mark Dickinson | cc6a982 | 2010-05-21 14:55:26 +0000 | [diff] [blame] | 624 | assert(PyComplex_Check(v)); |
| 625 | TO_COMPLEX(v, i); |
| 626 | |
| 627 | if (PyLong_Check(w)) { |
| 628 | /* Check for 0.0 imaginary part first to avoid the rich |
| 629 | * comparison when possible. |
| 630 | */ |
| 631 | if (i.imag == 0.0) { |
| 632 | PyObject *j, *sub_res; |
| 633 | j = PyFloat_FromDouble(i.real); |
| 634 | if (j == NULL) |
| 635 | return NULL; |
| 636 | |
| 637 | sub_res = PyObject_RichCompare(j, w, op); |
| 638 | Py_DECREF(j); |
| 639 | return sub_res; |
| 640 | } |
| 641 | else { |
| 642 | equal = 0; |
| 643 | } |
| 644 | } |
| 645 | else if (PyFloat_Check(w)) { |
| 646 | equal = (i.real == PyFloat_AsDouble(w) && i.imag == 0.0); |
| 647 | } |
| 648 | else if (PyComplex_Check(w)) { |
| 649 | Py_complex j; |
| 650 | |
| 651 | TO_COMPLEX(w, j); |
| 652 | equal = (i.real == j.real && i.imag == j.imag); |
| 653 | } |
| 654 | else { |
| 655 | goto Unimplemented; |
| 656 | } |
| 657 | |
| 658 | if (equal == (op == Py_EQ)) |
| 659 | res = Py_True; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 660 | else |
Mark Dickinson | cc6a982 | 2010-05-21 14:55:26 +0000 | [diff] [blame] | 661 | res = Py_False; |
Guido van Rossum | be4cbb1 | 2001-01-18 01:12:39 +0000 | [diff] [blame] | 662 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 663 | Py_INCREF(res); |
| 664 | return res; |
Mark Dickinson | cc6a982 | 2010-05-21 14:55:26 +0000 | [diff] [blame] | 665 | |
| 666 | Unimplemented: |
| 667 | Py_INCREF(Py_NotImplemented); |
| 668 | return Py_NotImplemented; |
Guido van Rossum | be4cbb1 | 2001-01-18 01:12:39 +0000 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 672 | complex_int(PyObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 673 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 674 | PyErr_SetString(PyExc_TypeError, |
| 675 | "can't convert complex to int"); |
| 676 | return NULL; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 679 | static PyObject * |
Fred Drake | 4288c80 | 2000-07-09 04:36:04 +0000 | [diff] [blame] | 680 | complex_float(PyObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 681 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 682 | PyErr_SetString(PyExc_TypeError, |
| 683 | "can't convert complex to float"); |
| 684 | return NULL; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 687 | static PyObject * |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 688 | complex_conjugate(PyObject *self) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 689 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 690 | Py_complex c; |
| 691 | c = ((PyComplexObject *)self)->cval; |
| 692 | c.imag = -c.imag; |
| 693 | return PyComplex_FromCComplex(c); |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 694 | } |
| 695 | |
Guido van Rossum | 46334cd | 2007-08-01 17:43:15 +0000 | [diff] [blame] | 696 | PyDoc_STRVAR(complex_conjugate_doc, |
| 697 | "complex.conjugate() -> complex\n" |
| 698 | "\n" |
| 699 | "Returns the complex conjugate of its argument. (3-4j).conjugate() == 3+4j."); |
| 700 | |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 701 | static PyObject * |
| 702 | complex_getnewargs(PyComplexObject *v) |
| 703 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 704 | Py_complex c = v->cval; |
| 705 | return Py_BuildValue("(dd)", c.real, c.imag); |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 706 | } |
| 707 | |
Eric Smith | 58a4224 | 2009-04-30 01:00:33 +0000 | [diff] [blame] | 708 | PyDoc_STRVAR(complex__format__doc, |
| 709 | "complex.__format__() -> str\n" |
| 710 | "\n" |
| 711 | "Converts to a string according to format_spec."); |
| 712 | |
| 713 | static PyObject * |
| 714 | complex__format__(PyObject* self, PyObject* args) |
| 715 | { |
| 716 | PyObject *format_spec; |
| 717 | |
| 718 | if (!PyArg_ParseTuple(args, "U:__format__", &format_spec)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 719 | return NULL; |
Eric Smith | 58a4224 | 2009-04-30 01:00:33 +0000 | [diff] [blame] | 720 | return _PyComplex_FormatAdvanced(self, |
| 721 | PyUnicode_AS_UNICODE(format_spec), |
| 722 | PyUnicode_GET_SIZE(format_spec)); |
| 723 | } |
| 724 | |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 725 | #if 0 |
| 726 | static PyObject * |
| 727 | complex_is_finite(PyObject *self) |
| 728 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 729 | Py_complex c; |
| 730 | c = ((PyComplexObject *)self)->cval; |
| 731 | return PyBool_FromLong((long)(Py_IS_FINITE(c.real) && |
| 732 | Py_IS_FINITE(c.imag))); |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | PyDoc_STRVAR(complex_is_finite_doc, |
| 736 | "complex.is_finite() -> bool\n" |
| 737 | "\n" |
| 738 | "Returns True if the real and the imaginary part is finite."); |
| 739 | #endif |
| 740 | |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 741 | static PyMethodDef complex_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 742 | {"conjugate", (PyCFunction)complex_conjugate, METH_NOARGS, |
| 743 | complex_conjugate_doc}, |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 744 | #if 0 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 745 | {"is_finite", (PyCFunction)complex_is_finite, METH_NOARGS, |
| 746 | complex_is_finite_doc}, |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 747 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 748 | {"__getnewargs__", (PyCFunction)complex_getnewargs, METH_NOARGS}, |
| 749 | {"__format__", (PyCFunction)complex__format__, |
| 750 | METH_VARARGS, complex__format__doc}, |
| 751 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 752 | }; |
| 753 | |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 754 | static PyMemberDef complex_members[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 755 | {"real", T_DOUBLE, offsetof(PyComplexObject, cval.real), READONLY, |
| 756 | "the real part of a complex number"}, |
| 757 | {"imag", T_DOUBLE, offsetof(PyComplexObject, cval.imag), READONLY, |
| 758 | "the imaginary part of a complex number"}, |
| 759 | {0}, |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 760 | }; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 761 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 762 | static PyObject * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 763 | complex_subtype_from_string(PyTypeObject *type, PyObject *v) |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 764 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 765 | const char *s, *start; |
| 766 | char *end; |
| 767 | double x=0.0, y=0.0, z; |
| 768 | int got_bracket=0; |
| 769 | char *s_buffer = NULL; |
| 770 | Py_ssize_t len; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 771 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 772 | if (PyUnicode_Check(v)) { |
| 773 | s_buffer = (char *)PyMem_MALLOC(PyUnicode_GET_SIZE(v) + 1); |
| 774 | if (s_buffer == NULL) |
| 775 | return PyErr_NoMemory(); |
| 776 | if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v), |
| 777 | PyUnicode_GET_SIZE(v), |
| 778 | s_buffer, |
| 779 | NULL)) |
| 780 | goto error; |
| 781 | s = s_buffer; |
| 782 | len = strlen(s); |
| 783 | } |
| 784 | else if (PyObject_AsCharBuffer(v, &s, &len)) { |
| 785 | PyErr_SetString(PyExc_TypeError, |
| 786 | "complex() arg is not a string"); |
| 787 | return NULL; |
| 788 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 789 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 790 | /* position on first nonblank */ |
| 791 | start = s; |
| 792 | while (Py_ISSPACE(*s)) |
| 793 | s++; |
| 794 | if (*s == '(') { |
| 795 | /* Skip over possible bracket from repr(). */ |
| 796 | got_bracket = 1; |
| 797 | s++; |
| 798 | while (Py_ISSPACE(*s)) |
| 799 | s++; |
| 800 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 801 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 802 | /* a valid complex string usually takes one of the three forms: |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 803 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 804 | <float> - real part only |
| 805 | <float>j - imaginary part only |
| 806 | <float><signed-float>j - real and imaginary parts |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 807 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 808 | where <float> represents any numeric string that's accepted by the |
| 809 | float constructor (including 'nan', 'inf', 'infinity', etc.), and |
| 810 | <signed-float> is any string of the form <float> whose first |
| 811 | character is '+' or '-'. |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 812 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 813 | For backwards compatibility, the extra forms |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 814 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 815 | <float><sign>j |
| 816 | <sign>j |
| 817 | j |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 818 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 819 | are also accepted, though support for these forms may be removed from |
| 820 | a future version of Python. |
| 821 | */ |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 822 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 823 | /* first look for forms starting with <float> */ |
| 824 | z = PyOS_string_to_double(s, &end, NULL); |
| 825 | if (z == -1.0 && PyErr_Occurred()) { |
| 826 | if (PyErr_ExceptionMatches(PyExc_ValueError)) |
| 827 | PyErr_Clear(); |
| 828 | else |
| 829 | goto error; |
| 830 | } |
| 831 | if (end != s) { |
| 832 | /* all 4 forms starting with <float> land here */ |
| 833 | s = end; |
| 834 | if (*s == '+' || *s == '-') { |
| 835 | /* <float><signed-float>j | <float><sign>j */ |
| 836 | x = z; |
| 837 | y = PyOS_string_to_double(s, &end, NULL); |
| 838 | if (y == -1.0 && PyErr_Occurred()) { |
| 839 | if (PyErr_ExceptionMatches(PyExc_ValueError)) |
| 840 | PyErr_Clear(); |
| 841 | else |
| 842 | goto error; |
| 843 | } |
| 844 | if (end != s) |
| 845 | /* <float><signed-float>j */ |
| 846 | s = end; |
| 847 | else { |
| 848 | /* <float><sign>j */ |
| 849 | y = *s == '+' ? 1.0 : -1.0; |
| 850 | s++; |
| 851 | } |
| 852 | if (!(*s == 'j' || *s == 'J')) |
| 853 | goto parse_error; |
| 854 | s++; |
| 855 | } |
| 856 | else if (*s == 'j' || *s == 'J') { |
| 857 | /* <float>j */ |
| 858 | s++; |
| 859 | y = z; |
| 860 | } |
| 861 | else |
| 862 | /* <float> */ |
| 863 | x = z; |
| 864 | } |
| 865 | else { |
| 866 | /* not starting with <float>; must be <sign>j or j */ |
| 867 | if (*s == '+' || *s == '-') { |
| 868 | /* <sign>j */ |
| 869 | y = *s == '+' ? 1.0 : -1.0; |
| 870 | s++; |
| 871 | } |
| 872 | else |
| 873 | /* j */ |
| 874 | y = 1.0; |
| 875 | if (!(*s == 'j' || *s == 'J')) |
| 876 | goto parse_error; |
| 877 | s++; |
| 878 | } |
Mark Dickinson | ad476da | 2009-04-23 19:14:16 +0000 | [diff] [blame] | 879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | /* trailing whitespace and closing bracket */ |
| 881 | while (Py_ISSPACE(*s)) |
| 882 | s++; |
| 883 | if (got_bracket) { |
| 884 | /* if there was an opening parenthesis, then the corresponding |
| 885 | closing parenthesis should be right here */ |
| 886 | if (*s != ')') |
| 887 | goto parse_error; |
| 888 | s++; |
| 889 | while (Py_ISSPACE(*s)) |
| 890 | s++; |
| 891 | } |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 892 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 893 | /* we should now be at the end of the string */ |
| 894 | if (s-start != len) |
| 895 | goto parse_error; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 896 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 897 | if (s_buffer) |
| 898 | PyMem_FREE(s_buffer); |
| 899 | return complex_subtype_from_doubles(type, x, y); |
Mark Dickinson | ad476da | 2009-04-23 19:14:16 +0000 | [diff] [blame] | 900 | |
Mark Dickinson | 6649fa4 | 2009-04-24 13:25:20 +0000 | [diff] [blame] | 901 | parse_error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 902 | PyErr_SetString(PyExc_ValueError, |
| 903 | "complex() arg is a malformed string"); |
Mark Dickinson | 1daebdf | 2009-10-26 22:05:06 +0000 | [diff] [blame] | 904 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 905 | if (s_buffer) |
| 906 | PyMem_FREE(s_buffer); |
| 907 | return NULL; |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 908 | } |
| 909 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 910 | static PyObject * |
| 911 | complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 912 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 913 | PyObject *r, *i, *tmp; |
| 914 | PyNumberMethods *nbr, *nbi = NULL; |
| 915 | Py_complex cr, ci; |
| 916 | int own_r = 0; |
| 917 | int cr_is_complex = 0; |
| 918 | int ci_is_complex = 0; |
| 919 | static char *kwlist[] = {"real", "imag", 0}; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 920 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 921 | r = Py_False; |
| 922 | i = NULL; |
| 923 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:complex", kwlist, |
| 924 | &r, &i)) |
| 925 | return NULL; |
Raymond Hettinger | 604cd6a | 2002-08-29 14:22:51 +0000 | [diff] [blame] | 926 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 927 | /* Special-case for a single argument when type(arg) is complex. */ |
| 928 | if (PyComplex_CheckExact(r) && i == NULL && |
| 929 | type == &PyComplex_Type) { |
| 930 | /* Note that we can't know whether it's safe to return |
| 931 | a complex *subclass* instance as-is, hence the restriction |
| 932 | to exact complexes here. If either the input or the |
| 933 | output is a complex subclass, it will be handled below |
| 934 | as a non-orthogonal vector. */ |
| 935 | Py_INCREF(r); |
| 936 | return r; |
| 937 | } |
| 938 | if (PyUnicode_Check(r)) { |
| 939 | if (i != NULL) { |
| 940 | PyErr_SetString(PyExc_TypeError, |
| 941 | "complex() can't take second arg" |
| 942 | " if first is a string"); |
| 943 | return NULL; |
| 944 | } |
| 945 | return complex_subtype_from_string(type, r); |
| 946 | } |
| 947 | if (i != NULL && PyUnicode_Check(i)) { |
| 948 | PyErr_SetString(PyExc_TypeError, |
| 949 | "complex() second arg can't be a string"); |
| 950 | return NULL; |
| 951 | } |
Tim Peters | 2400fa4 | 2001-09-12 19:12:49 +0000 | [diff] [blame] | 952 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 953 | tmp = try_complex_special_method(r); |
| 954 | if (tmp) { |
| 955 | r = tmp; |
| 956 | own_r = 1; |
| 957 | } |
| 958 | else if (PyErr_Occurred()) { |
| 959 | return NULL; |
| 960 | } |
Benjamin Peterson | aea4428 | 2010-01-04 01:10:28 +0000 | [diff] [blame] | 961 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 962 | nbr = r->ob_type->tp_as_number; |
| 963 | if (i != NULL) |
| 964 | nbi = i->ob_type->tp_as_number; |
| 965 | if (nbr == NULL || nbr->nb_float == NULL || |
| 966 | ((i != NULL) && (nbi == NULL || nbi->nb_float == NULL))) { |
| 967 | PyErr_SetString(PyExc_TypeError, |
| 968 | "complex() argument must be a string or a number"); |
| 969 | if (own_r) { |
| 970 | Py_DECREF(r); |
| 971 | } |
| 972 | return NULL; |
| 973 | } |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 974 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 975 | /* If we get this far, then the "real" and "imag" parts should |
| 976 | both be treated as numbers, and the constructor should return a |
| 977 | complex number equal to (real + imag*1j). |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 978 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 979 | Note that we do NOT assume the input to already be in canonical |
| 980 | form; the "real" and "imag" parts might themselves be complex |
| 981 | numbers, which slightly complicates the code below. */ |
| 982 | if (PyComplex_Check(r)) { |
| 983 | /* Note that if r is of a complex subtype, we're only |
| 984 | retaining its real & imag parts here, and the return |
| 985 | value is (properly) of the builtin complex type. */ |
| 986 | cr = ((PyComplexObject*)r)->cval; |
| 987 | cr_is_complex = 1; |
| 988 | if (own_r) { |
| 989 | Py_DECREF(r); |
| 990 | } |
| 991 | } |
| 992 | else { |
| 993 | /* The "real" part really is entirely real, and contributes |
| 994 | nothing in the imaginary direction. |
| 995 | Just treat it as a double. */ |
| 996 | tmp = PyNumber_Float(r); |
| 997 | if (own_r) { |
| 998 | /* r was a newly created complex number, rather |
| 999 | than the original "real" argument. */ |
| 1000 | Py_DECREF(r); |
| 1001 | } |
| 1002 | if (tmp == NULL) |
| 1003 | return NULL; |
| 1004 | if (!PyFloat_Check(tmp)) { |
| 1005 | PyErr_SetString(PyExc_TypeError, |
| 1006 | "float(r) didn't return a float"); |
| 1007 | Py_DECREF(tmp); |
| 1008 | return NULL; |
| 1009 | } |
| 1010 | cr.real = PyFloat_AsDouble(tmp); |
| 1011 | cr.imag = 0.0; /* Shut up compiler warning */ |
| 1012 | Py_DECREF(tmp); |
| 1013 | } |
| 1014 | if (i == NULL) { |
| 1015 | ci.real = 0.0; |
| 1016 | } |
| 1017 | else if (PyComplex_Check(i)) { |
| 1018 | ci = ((PyComplexObject*)i)->cval; |
| 1019 | ci_is_complex = 1; |
| 1020 | } else { |
| 1021 | /* The "imag" part really is entirely imaginary, and |
| 1022 | contributes nothing in the real direction. |
| 1023 | Just treat it as a double. */ |
| 1024 | tmp = (*nbi->nb_float)(i); |
| 1025 | if (tmp == NULL) |
| 1026 | return NULL; |
| 1027 | ci.real = PyFloat_AsDouble(tmp); |
| 1028 | Py_DECREF(tmp); |
| 1029 | } |
| 1030 | /* If the input was in canonical form, then the "real" and "imag" |
| 1031 | parts are real numbers, so that ci.imag and cr.imag are zero. |
| 1032 | We need this correction in case they were not real numbers. */ |
Christian Heimes | 69a7963 | 2007-11-28 10:04:30 +0000 | [diff] [blame] | 1033 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1034 | if (ci_is_complex) { |
| 1035 | cr.real -= ci.imag; |
| 1036 | } |
| 1037 | if (cr_is_complex) { |
| 1038 | ci.real += cr.imag; |
| 1039 | } |
| 1040 | return complex_subtype_from_doubles(type, cr.real, ci.real); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1043 | PyDoc_STRVAR(complex_doc, |
Tim Peters | 2400fa4 | 2001-09-12 19:12:49 +0000 | [diff] [blame] | 1044 | "complex(real[, imag]) -> complex number\n" |
| 1045 | "\n" |
| 1046 | "Create a complex number from a real part and an optional imaginary part.\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1047 | "This is equivalent to (real + imag*1j) where imag defaults to 0."); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1048 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1049 | static PyNumberMethods complex_as_number = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1050 | (binaryfunc)complex_add, /* nb_add */ |
| 1051 | (binaryfunc)complex_sub, /* nb_subtract */ |
| 1052 | (binaryfunc)complex_mul, /* nb_multiply */ |
| 1053 | (binaryfunc)complex_remainder, /* nb_remainder */ |
| 1054 | (binaryfunc)complex_divmod, /* nb_divmod */ |
| 1055 | (ternaryfunc)complex_pow, /* nb_power */ |
| 1056 | (unaryfunc)complex_neg, /* nb_negative */ |
| 1057 | (unaryfunc)complex_pos, /* nb_positive */ |
| 1058 | (unaryfunc)complex_abs, /* nb_absolute */ |
| 1059 | (inquiry)complex_bool, /* nb_bool */ |
| 1060 | 0, /* nb_invert */ |
| 1061 | 0, /* nb_lshift */ |
| 1062 | 0, /* nb_rshift */ |
| 1063 | 0, /* nb_and */ |
| 1064 | 0, /* nb_xor */ |
| 1065 | 0, /* nb_or */ |
| 1066 | complex_int, /* nb_int */ |
| 1067 | 0, /* nb_reserved */ |
| 1068 | complex_float, /* nb_float */ |
| 1069 | 0, /* nb_inplace_add */ |
| 1070 | 0, /* nb_inplace_subtract */ |
| 1071 | 0, /* nb_inplace_multiply*/ |
| 1072 | 0, /* nb_inplace_remainder */ |
| 1073 | 0, /* nb_inplace_power */ |
| 1074 | 0, /* nb_inplace_lshift */ |
| 1075 | 0, /* nb_inplace_rshift */ |
| 1076 | 0, /* nb_inplace_and */ |
| 1077 | 0, /* nb_inplace_xor */ |
| 1078 | 0, /* nb_inplace_or */ |
| 1079 | (binaryfunc)complex_int_div, /* nb_floor_divide */ |
| 1080 | (binaryfunc)complex_div, /* nb_true_divide */ |
| 1081 | 0, /* nb_inplace_floor_divide */ |
| 1082 | 0, /* nb_inplace_true_divide */ |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 1083 | }; |
| 1084 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1085 | PyTypeObject PyComplex_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1086 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 1087 | "complex", |
| 1088 | sizeof(PyComplexObject), |
| 1089 | 0, |
| 1090 | complex_dealloc, /* tp_dealloc */ |
| 1091 | 0, /* tp_print */ |
| 1092 | 0, /* tp_getattr */ |
| 1093 | 0, /* tp_setattr */ |
| 1094 | 0, /* tp_reserved */ |
| 1095 | (reprfunc)complex_repr, /* tp_repr */ |
| 1096 | &complex_as_number, /* tp_as_number */ |
| 1097 | 0, /* tp_as_sequence */ |
| 1098 | 0, /* tp_as_mapping */ |
| 1099 | (hashfunc)complex_hash, /* tp_hash */ |
| 1100 | 0, /* tp_call */ |
Mark Dickinson | 388122d | 2010-08-04 20:56:28 +0000 | [diff] [blame] | 1101 | (reprfunc)complex_repr, /* tp_str */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1102 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 1103 | 0, /* tp_setattro */ |
| 1104 | 0, /* tp_as_buffer */ |
| 1105 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
| 1106 | complex_doc, /* tp_doc */ |
| 1107 | 0, /* tp_traverse */ |
| 1108 | 0, /* tp_clear */ |
| 1109 | complex_richcompare, /* tp_richcompare */ |
| 1110 | 0, /* tp_weaklistoffset */ |
| 1111 | 0, /* tp_iter */ |
| 1112 | 0, /* tp_iternext */ |
| 1113 | complex_methods, /* tp_methods */ |
| 1114 | complex_members, /* tp_members */ |
| 1115 | 0, /* tp_getset */ |
| 1116 | 0, /* tp_base */ |
| 1117 | 0, /* tp_dict */ |
| 1118 | 0, /* tp_descr_get */ |
| 1119 | 0, /* tp_descr_set */ |
| 1120 | 0, /* tp_dictoffset */ |
| 1121 | 0, /* tp_init */ |
| 1122 | PyType_GenericAlloc, /* tp_alloc */ |
| 1123 | complex_new, /* tp_new */ |
| 1124 | PyObject_Del, /* tp_free */ |
Guido van Rossum | f9fca92 | 1996-01-12 00:47:05 +0000 | [diff] [blame] | 1125 | }; |