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 tmick
Recipients
Date 2000-06-07.03:26:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This patches fixes a possible overflow of the optional timeout parameter for
the select() function (selectmodule.c). This timeout is passed in as a double
and then truncated to an int. If the double is sufficiently large you can get
unexpected results as it overflows. This patch raises an overflow if the
given select timeout overflows.

History
Date User Action Args
2007-08-23 14:59:32adminlinkissue400519 messages
2007-08-23 14:59:32admincreate