Files
cpython/Lib/test
Antoine Pitrou bdb1cf1ca5 Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.
Also, add a multiprocessing.connection.wait(rlist, timeout=None) function
for polling multiple objects at once.  Patch by sbt.

Complete changelist from sbt's patch:

* Adds a wait(rlist, timeout=None) function for polling multiple
  objects at once.  On Unix this is just a wrapper for
  select(rlist, [], [], timeout=None).

* Removes use of the SentinelReady exception and the sentinels argument
  to certain methods.  concurrent.futures.process has been changed to
  use wait() instead of SentinelReady.

* Fixes bugs concerning PipeConnection.poll() and messages of zero
  length.

* Fixes PipeListener.accept() to call ConnectNamedPipe() with
  overlapped=True.

* Fixes Queue.empty() and SimpleQueue.empty() so that they are
  threadsafe on Windows.

* Now PipeConnection.poll() and wait() will not modify the pipe except
  possibly by consuming a zero length message.  (Previously poll()
  could consume a partial message.)

* All of multiprocesing's pipe related blocking functions/methods are
  now interruptible by SIGINT on Windows.
2012-03-05 19:28:37 +01:00
..
2012-03-04 20:36:28 +01:00
2012-01-09 18:33:27 -05:00
2012-02-19 03:54:29 +01:00
2011-11-05 13:43:01 -07:00
2012-01-20 11:01:06 -05:00
2012-02-27 22:01:25 +01:00
2012-02-29 16:21:25 -08:00
2012-02-03 23:16:11 +01:00
2012-02-29 11:49:45 +02:00
2012-01-03 16:24:39 -06:00
2012-02-20 22:24:29 -05:00
2012-01-04 14:47:30 +08:00
2012-03-04 07:15:21 +02:00