Message141871
Since this is still dribbling along I'll point out intobject.c:int_pow() and:
prev = ix; /* Save value for overflow check */
if (iw & 1) {
ix = ix*temp;
if (temp == 0)
break; /* Avoid ix / 0 */
if (ix / temp != prev) {
return PyLong_Type.tp_as_number->nb_power(
(PyObject *)v,
(PyObject *)w,
(PyObject *)z);
}
}
which I misclassified in http://bugs.python.org/issue12701 |
|
Date |
User |
Action |
Args |
2011-08-10 15:47:12 | deadshort | set | recipients:
+ deadshort, gvanrossum, loewis, nnorwitz, gregory.p.smith, mark.dickinson, pitrou, vstinner, christian.heimes, alexandre.vassalotti, donmez, matejcik, skrah, dmalcolm |
2011-08-10 15:47:11 | deadshort | set | messageid: <1312991232.0.0.11640751093.issue1621@psf.upfronthosting.co.za> |
2011-08-10 15:47:11 | deadshort | link | issue1621 messages |
2011-08-10 15:47:11 | deadshort | create | |
|