[issue5570] Bus error when calling .poll() on a closed Connection from multiprocessing.Pipe()

Jesse Noller report at bugs.python.org
Thu Mar 26 20:43:58 CET 2009


Jesse Noller <jnoller at gmail.com> added the comment:

OS/X, Python Trunk:

>>> from multiprocessing import Pipe
>>> a, b = Pipe()
>>> a.close()
>>> a.poll()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IOError: handle out of range in select()
>>> 

2.6.1 Does not have the fix (I can segfault it here too). Ben, are we 
planning a 2.6.2?

----------
nosy: +benjamin.peterson

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


More information about the Python-bugs-list mailing list