compatibility fix for the fake iterator in ProcessWrapper

python3
Markus Pawlata 2019-07-14 02:08:57 +02:00
parent 6a0424b766
commit 37371fc962
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class ProcessWrapper(object):
return data
self.close()
raise StopIteration()
__next__ = next
def send_process(args, pid_file):