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 gregory.p.smith
Recipients gregory.p.smith, jackdied
Date 2012-04-20.19:20:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334949623.77.0.295518189269.issue14635@psf.upfronthosting.co.za>
In-reply-to
Content
telnetlib uses select.select.  This limits it to being able to work when file descriptors are still below FD_SETSIZE (often 1024) meaning it can't be used in some large programs today.

It should use poll.

(it is probably easy to fix this and the telnetlib EINTR issue1049450 at the same time)
History
Date User Action Args
2012-04-20 19:20:23gregory.p.smithsetrecipients: + gregory.p.smith, jackdied
2012-04-20 19:20:23gregory.p.smithsetmessageid: <1334949623.77.0.295518189269.issue14635@psf.upfronthosting.co.za>
2012-04-20 19:20:23gregory.p.smithlinkissue14635 messages
2012-04-20 19:20:23gregory.p.smithcreate