This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author deadshort
Recipients alexandre.vassalotti, christian.heimes, deadshort, dmalcolm, donmez, gregory.p.smith, gvanrossum, loewis, mark.dickinson, matejcik, nnorwitz, pitrou, skrah, vstinner
Date 2011-08-10.15:47:11
SpamBayes Score 0.008792535
Marked as misclassified No
Message-id <1312991232.0.0.11640751093.issue1621@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-08-10 15:47:12deadshortsetrecipients: + deadshort, gvanrossum, loewis, nnorwitz, gregory.p.smith, mark.dickinson, pitrou, vstinner, christian.heimes, alexandre.vassalotti, donmez, matejcik, skrah, dmalcolm
2011-08-10 15:47:11deadshortsetmessageid: <1312991232.0.0.11640751093.issue1621@psf.upfronthosting.co.za>
2011-08-10 15:47:11deadshortlinkissue1621 messages
2011-08-10 15:47:11deadshortcreate