This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

作者 gsson
收信人 gsson
日期 2009-01-09.11:47:52
SpamBayes Score 0.00025578146
Marked as misclassified
Message-id <1231501673.26.0.621070272444.issue4892@psf.upfronthosting.co.za>
In-reply-to
内容
$ 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()
历史
日期 用户 动作 参数
2009-01-09 11:47:53gsson修改recipients: + gsson
2009-01-09 11:47:53gsson修改messageid: <1231501673.26.0.621070272444.issue4892@psf.upfronthosting.co.za>
2009-01-09 11:47:52gsson链接issue4892 messages
2009-01-09 11:47:52gsson创建