mirror of
https://github.com/python/cpython.git
synced 2025-10-08 08:01:55 +00:00
#12002 - ftplib's abort() method raises TypeError
This commit is contained in:
parent
81638f1351
commit
0b5c21f9c9
3 changed files with 12 additions and 1 deletions
|
@ -232,12 +232,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.'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue