summaryrefslogtreecommitdiff
path: root/Lib/ftplib.py
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2011-05-07 19:09:34 +0200
committerGiampaolo Rodola' <g.rodola@gmail.com>2011-05-07 19:09:34 +0200
commit24befa87dcddd95005c82a1c42553856de7dcd08 (patch)
tree0d45305c10d52775b78d611f0ef897a15e030988 /Lib/ftplib.py
parent4c1aebd88bc71fcbca26279bd21f971f93acb641 (diff)
parent0b5c21f9c96e6a0734dd7bcbdeec05500a7baf70 (diff)
downloadcpython-git-24befa87dcddd95005c82a1c42553856de7dcd08.tar.gz
merge with 3.1
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r--Lib/ftplib.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index 7c398879bc..be1797f62d 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -241,12 +241,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.'''
@@ -781,6 +782,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)