From d686848807dc35ee84524c64aa7a17d9a5b927ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giampaolo=20Rodol=C3=A0?= Date: Tue, 22 Feb 2011 19:24:33 +0000 Subject: [PATCH] In FTP.close() method, make sure to also close the socket object, not only the file. --- Lib/ftplib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 22b5fd2175a..fd5a8633e36 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -589,11 +589,11 @@ class FTP: def close(self): '''Close the connection without assuming anything about it.''' - if self.file: + if self.file is not None: self.file.close() + if self.sock is not None: self.sock.close() - self.file = self.sock = None - + self.file = self.sock = None try: import ssl