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 neologix
Recipients neologix, sbt, sultanqasim
Date 2013-04-13.06:31:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365834682.9.0.0500002880174.issue17707@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, that's a regression introduced by fix for issue #10527.

Just a rounding error:
"""
--- Lib/multiprocessing/connection.py.orig      2013-04-13 06:27:57.000000000 +0000
+++ Lib/multiprocessing/connection.py   2013-04-13 06:25:23.000000000 +0000
@@ -862,7 +862,7 @@
     if hasattr(select, 'poll'):
         def _poll(fds, timeout):
             if timeout is not None:
-                timeout = int(timeout) * 1000  # timeout is in milliseconds
+                timeout = int(timeout * 1000)  # timeout is in milliseconds
             fd_map = {}
             pollster = select.poll()
             for fd in fds:
"""

(the original patch really wasn't reviewed properly...)
History
Date User Action Args
2013-04-13 06:31:22neologixsetrecipients: + neologix, sbt, sultanqasim
2013-04-13 06:31:22neologixsetmessageid: <1365834682.9.0.0500002880174.issue17707@psf.upfronthosting.co.za>
2013-04-13 06:31:22neologixlinkissue17707 messages
2013-04-13 06:31:22neologixcreate