diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-05-07 17:11:06 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-05-07 17:11:06 (GMT) |
commit | ffc235cbbf66b3859af1a88d52d52349c6592130 (patch) | |
tree | b8ada4219a221b5714d94b52e01a0500d826a07f /Lib/ftplib.py | |
parent | 8b7664d0b81b65acf1e1946adf22d72cfa2dff26 (diff) | |
parent | 24befa87dcddd95005c82a1c42553856de7dcd08 (diff) | |
download | cpython-ffc235cbbf66b3859af1a88d52d52349c6592130.zip cpython-ffc235cbbf66b3859af1a88d52d52349c6592130.tar.gz cpython-ffc235cbbf66b3859af1a88d52d52349c6592130.tar.bz2 |
merge with 3.2
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 752e2b4..d15a135 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -247,12 +247,13 @@ class FTP: This does not follow the procedure from the RFC to send Telnet IP and Synch; that doesn't seem to work with the servers I've tried. Instead, just send the ABOR command as OOB data.''' - line = 'ABOR' + CRLF + line = b'ABOR' + B_CRLF if self.debugging > 1: print('*put urgent*', self.sanitize(line)) self.sock.sendall(line, MSG_OOB) resp = self.getmultiline() if resp[:3] not in {'426', '225', '226'}: raise error_proto(resp) + return resp def sendcmd(self, cmd): '''Send a command and return the response.''' @@ -816,6 +817,15 @@ else: conn.close() return self.voidresp() + def abort(self): + # overridden as we can't pass MSG_OOB flag to sendall() + line = b'ABOR' + B_CRLF + self.sock.sendall(line) + resp = self.getmultiline() + if resp[:3] not in {'426', '225', '226'}: + raise error_proto(resp) + return resp + __all__.append('FTP_TLS') all_errors = (Error, IOError, EOFError, ssl.SSLError) |