Gregory P. Smith added the comment:

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

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18035>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to