mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +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
|
@ -368,7 +368,8 @@ class HTTPConnection:
|
|||
except socket.error, msg:
|
||||
if self.debuglevel > 0:
|
||||
print 'connect fail:', (self.host, self.port)
|
||||
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