mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
Only close sockets if they have been created. Reported by Blake Winton.
This commit is contained in:
parent
fb163784ab
commit
322c0d187d
5 changed files with 15 additions and 6 deletions
|
@ -210,7 +210,8 @@ class Telnet:
|
|||
self.sock = socket.socket(af, socktype, proto)
|
||||
self.sock.connect(sa)
|
||||
except socket.error, msg:
|
||||
self.sock.close()
|
||||
if self.sock:
|
||||
self.sock.close()
|
||||
self.sock = None
|
||||
continue
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue