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