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.

Author William.Edwards
Recipients William.Edwards
Date 2012-10-17.21:28:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350509318.53.0.123166895316.issue16269@psf.upfronthosting.co.za>
In-reply-to
Content
If you have 1024 file descriptors already open, the file descriptors created internally in multiprocessing.Queue will be beyond 1024 and the select() call buried deep in the Queue will throw an exception.

In fact, all uses of select() in the Python libs should be use poll() where available instead, obviously.
History
Date User Action Args
2012-10-17 21:28:38William.Edwardssetrecipients: + William.Edwards
2012-10-17 21:28:38William.Edwardssetmessageid: <1350509318.53.0.123166895316.issue16269@psf.upfronthosting.co.za>
2012-10-17 21:28:38William.Edwardslinkissue16269 messages
2012-10-17 21:28:38William.Edwardscreate