mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
merge with 3.1
This commit is contained in:
commit
24befa87dc
3 changed files with 21 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue