[issue10527] multiprocessing.Pipe problem: "handle out of range in select()"

2012-10-18 Thread William Edwards
William Edwards added the comment: That was my fear; I raise an issue hurting my 2.x servers in production, and its closed as duplicate instead of not-going-to-fix? -- ___ Python tracker <http://bugs.python.org/issue10

[issue10527] multiprocessing.Pipe problem: "handle out of range in select()"

2012-10-18 Thread William Edwards
William Edwards added the comment: Apologies, I meant: issue 16269 has just been closed as a dup of this one. Does this mean that this one will be fixed in Python 2.x too? -- ___ Python tracker <http://bugs.python.org/issue10

[issue10527] multiprocessing.Pipe problem: "handle out of range in select()"

2012-10-18 Thread William Edwards
William Edwards added the comment: issue 16259 has just been closed as a dup of this one. Does this mean that this one will be fixed in Python 2.x too? -- nosy: +William.Edwards ___ Python tracker <http://bugs.python.org/issue10

[issue16269] multiprocessing.Queue uses select()

2012-10-17 Thread William Edwards
New submission from William Edwards: 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