pprocess

tests/create_loop.py

159:448313b5b34e
2009-06-05 Paul Boddie Added more documentation about continuous communications.
     1 #!/usr/bin/env python     2      3 from pprocess import create     4      5 limit = 100     6 channel = create()     7 if channel.pid == 0:     8     i = channel.receive()     9     while i < limit:    10         print i    11         i = channel.receive()    12     channel.send("Done")    13 else:    14     for i in range(0, limit + 1):    15         channel.send(i)    16     print channel.receive()    17     18 # vim: tabstop=4 expandtab shiftwidth=4