Message79465
| Author | gsson |
|---|---|
| Recipients | gsson |
| Date | 2009-01-09.11:47:52 |
| SpamBayes Score | 0.00025578146 |
| Marked as misclassified | No |
| Message-id | <1231501673.26.0.621070272444.issue4892@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
$ cat pipetest2.py
try:
from multiprocessing import Pipe
except ImportError:
from processing import Pipe
c1, c2 = Pipe(duplex=False)
c2.send('asdf')
print c1.recv()
c2.send(c1)
print c1.recv() |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2009-01-09 11:47:53 | gsson | set | recipients: + gsson |
| 2009-01-09 11:47:53 | gsson | set | messageid: <1231501673.26.0.621070272444.issue4892@psf.upfronthosting.co.za> |
| 2009-01-09 11:47:52 | gsson | link | issue4892 messages |
| 2009-01-09 11:47:52 | gsson | create | |