I'm wondering if it is possible to make stdout
works with Parallel Python? It's really hard to debug without seeing any print-out.
For example, given the following code snippets:
import pp
def printit(s):
print s
job_server = pp.Server()
for i in xrange(100):
job_server.submit(printit, (i,))
job_server.wait()
There is not any print out. Any ideas?