]> granicus.if.org Git - python/commitdiff
#12002 - ftplib's abort() method raises TypeError
authorGiampaolo Rodola' <g.rodola@gmail.com>
Sat, 7 May 2011 17:03:47 +0000 (19:03 +0200)
committerGiampaolo Rodola' <g.rodola@gmail.com>
Sat, 7 May 2011 17:03:47 +0000 (19:03 +0200)
Lib/ftplib.py
Lib/test/test_ftplib.py
Misc/NEWS

index ea91c1707c137dfcd6185facfc7e37786dfcb4cd..af213f30313ff7f7d154c7fbd024e468d6648ebd 100644 (file)
@@ -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.'''
index fa1079f7889f5fb2afe6c223ceba242dc25f7a62..2b2c4cf0a90c3d057f8f22b8501b11ab25bdb337 100644 (file)
@@ -42,6 +42,8 @@ class DummyFTPHandler(asynchat.async_chat):
 
     def __init__(self, conn):
         asynchat.async_chat.__init__(self, conn)
+        # tells the socket to handle urgent data inline (ABOR command)
+        self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_OOBINLINE, 1)
         self.set_terminator(b"\r\n")
         self.in_buffer = []
         self.dtp = None
@@ -158,6 +160,9 @@ class DummyFTPHandler(asynchat.async_chat):
         self.push('221 quit ok')
         self.close()
 
+    def cmd_abor(self, arg):
+        self.push('226 abor ok')
+
     def cmd_stor(self, arg):
         self.push('125 stor ok')
 
@@ -312,6 +317,9 @@ class TestFTPClass(TestCase):
         # Ensure the connection gets closed; sock attribute should be None
         self.assertEqual(self.client.sock, None)
 
+    def test_abort(self):
+        self.client.abort()
+
     def test_retrbinary(self):
         def callback(data):
             received.append(data.decode('ascii'))
index 5a445ee8fd00974776feff43d454c30522e2c30e..751900d6caa5047be0a24a12e29acb58b1b8c881 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #12002: ftplib's abort() method raises TypeError.
+
 - Issue #11391: Writing to a mmap object created with
   ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a
   TypeError.  Patch by Charles-François Natali.