mirror of https://github.com/python/cpython
Provide a better diagnosis on socket errors
This commit is contained in:
commit
a5dba1abea
|
@ -363,8 +363,10 @@ class SMTP:
|
|||
while 1:
|
||||
try:
|
||||
line = self.file.readline()
|
||||
except socket.error:
|
||||
line = ''
|
||||
except socket.error as e:
|
||||
self.close()
|
||||
raise SMTPServerDisconnected("Connection unexpectedly closed: "
|
||||
+ str(e))
|
||||
if not line:
|
||||
self.close()
|
||||
raise SMTPServerDisconnected("Connection unexpectedly closed")
|
||||
|
|
Loading…
Reference in New Issue