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 sbt
Recipients sbt
Date 2012-12-20.12:12:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356005564.78.0.448488855242.issue16736@psf.upfronthosting.co.za>
In-reply-to
Content
Relevant code:

    int timeout = 0, poll_result, i, j;
    ...
        tout = PyNumber_Long(tout);
        if (!tout)
            return NULL;
        timeout = PyLong_AsLong(tout);  <-- implicit cast to int
History
Date User Action Args
2012-12-20 12:12:44sbtsetrecipients: + sbt
2012-12-20 12:12:44sbtsetmessageid: <1356005564.78.0.448488855242.issue16736@psf.upfronthosting.co.za>
2012-12-20 12:12:44sbtlinkissue16736 messages
2012-12-20 12:12:44sbtcreate