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
Date 2013-05-22.17:40:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369244449.82.0.457481418211.issue18035@psf.upfronthosting.co.za>
In-reply-to
Content
As this is only on the select.poll code path, a workaround for code that isn't going to hit select.select file descriptor limits is to set their telnetlib.Telnet instance _has_poll attribute to False before using it.

my_telnet = telnetlib.Telnet(...)
my_telnet._has_poll = False
History
Date User Action Args
2013-05-22 17:40:49gregory.p.smithsetrecipients: + gregory.p.smith
2013-05-22 17:40:49gregory.p.smithsetmessageid: <1369244449.82.0.457481418211.issue18035@psf.upfronthosting.co.za>
2013-05-22 17:40:49gregory.p.smithlinkissue18035 messages
2013-05-22 17:40:49gregory.p.smithcreate