This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ftplib.FTP.abort() should consider "225" a positive response code to ABOR
Type: Stage:
Components: Versions:
process
Status: closed Resolution: duplicate
Dependencies: Superseder: ftplib: ABOR does not consider 225 response code
View: 3817
Assigned To: Nosy List: giampaolo.rodola
Priority: normal Keywords: patch

Created on 2008-09-09 13:58 by giampaolo.rodola, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ftplib.patch giampaolo.rodola, 2008-09-09 13:58
Messages (1)
msg72861 - (view) Author: Giampaolo Rodola' (giampaolo.rodola) * (Python committer) Date: 2008-09-09 13:58
RFC-959 at chapter 5.4 includes 225 as a possible response to an ABOR
command.
225 should be sent by server when a client issues an ABOR command and
there's no data transfer to abort.
The patch in attachment includes 225 code in the list of positive ABOR
response codes.


[1] http://www.ietf.org/rfc/rfc0959.txt
History
Date User Action Args
2022-04-11 14:56:38adminsetgithub: 48068
2008-09-09 20:32:57georg.brandlsetstatus: open -> closed
resolution: duplicate
superseder: ftplib: ABOR does not consider 225 response code
2008-09-09 13:58:13giampaolo.rodolacreate