Merge 3.3.

This commit is contained in:
Richard Oudkerk 2014-03-23 12:52:16 +00:00
commit c346060440
3 changed files with 4 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class Popen(popen_fork.Popen):
def poll(self, flag=os.WNOHANG):
if self.returncode is None:
from .connection import wait
from multiprocessing.connection import wait
timeout = 0 if flag == os.WNOHANG else None
if not wait([self.sentinel], timeout):
return None