Skip to content
Snippets Groups Projects
Commit 9969bee8 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Merge pull request #7 from FreddieWitherden/master

Fix prefork for Python 2.6.
parents 75cdff8a 8eaf2abe
Branches
Tags
No related merge requests found
Pipeline #
......@@ -65,7 +65,12 @@ class DirectForker(object):
return retc
def waitall(self):
return {aid: self.wait(aid) for aid in list(self.apids)}
rets = {}
for aid in list(self.apids):
rets[aid] = self.wait(aid)
return rets
def _send_packet(sock, data):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment