[issue13109] telnetlib insensitive to connection loss
xy zzy added the comment: Cfrom class(): # see if we can connect to pcPart try: self.pcPart = telnetlib.Telnet(IP, PORT) # clear the buffer for i in range(10): self.pcPart.write('\n')
[issue13109] telnetlib insensitive to connection loss
New submission from xy zzy : Using python's telnetlib I can connect and communicate with a device. While the telnet session is active I can disconnect the network cable of the device. At this point, I would expect read_until() with a timeout to throw a socket.error, EOFError or perha