[issue4892] Sending Connection-objects over multiprocessing connections fails

Henrik Gustafsson report at bugs.python.org
Fri Jan 9 12:47:53 CET 2009


Henrik Gustafsson <henrik.gustafsson at purplescout.se> added the comment:

$ 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()

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4892>
_______________________________________


More information about the Python-bugs-list mailing list