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.

Unsupported provider

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:53gssonsetrecipients: + gsson
2009-01-09 11:47:53gssonsetmessageid: <1231501673.26.0.621070272444.issue4892@psf.upfronthosting.co.za>
2009-01-09 11:47:52gssonlinkissue4892 messages
2009-01-09 11:47:52gssoncreate