Message210062
Attached patch fixes the issue, but it has no unit test :-(
On Windows, it looks like IocpProactor can also raise an error if the timeout is too large:
# GetQueuedCompletionStatus() has a resolution of 1 millisecond,
# round away from zero to wait *at least* timeout seconds.
ms = math.ceil(timeout * 1e3)
if ms >= INFINITE:
raise ValueError("timeout too big")
with INFINITE = 0xffffffff. |
|
Date |
User |
Action |
Args |
2014-02-03 00:40:40 | vstinner | set | recipients:
+ vstinner, gvanrossum, neologix |
2014-02-03 00:40:40 | vstinner | set | messageid: <1391388040.8.0.286247149946.issue20493@psf.upfronthosting.co.za> |
2014-02-03 00:40:40 | vstinner | link | issue20493 messages |
2014-02-03 00:40:40 | vstinner | create | |
|