Author jnoller
Recipients amacleod, benjamin.peterson, jnoller, mallyvai
Date 2009-03-26.19:43:57
SpamBayes Score 2.72813e-06
Marked as misclassified No
Message-id <1238096638.8.0.402347086866.issue5570@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2009-03-26 19:43:58jnollersetrecipients: + jnoller, benjamin.peterson, amacleod, mallyvai
2009-03-26 19:43:58jnollersetmessageid: <1238096638.8.0.402347086866.issue5570@psf.upfronthosting.co.za>
2009-03-26 19:43:57jnollerlinkissue5570 messages
2009-03-26 19:43:57jnollercreate