mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
Fix issue #21641: Close the socket before raising the SMTPResponseException. Fixes the ResourceWarning in the test run.
Patch by Claudiu.Popa.
This commit is contained in:
parent
8dc3df1b60
commit
4ce118e99a
1 changed files with 1 additions and 0 deletions
|
|
@ -377,6 +377,7 @@ class SMTP:
|
|||
if self.debuglevel > 0:
|
||||
print('reply:', repr(line), file=stderr)
|
||||
if len(line) > _MAXLINE:
|
||||
self.close()
|
||||
raise SMTPResponseException(500, "Line too long.")
|
||||
resp.append(line[4:].strip(b' \t\r\n'))
|
||||
code = line[:3]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue