[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-17 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12002 ___

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-07 Thread Giampaolo Rodola'
Giampaolo Rodola' g.rod...@gmail.com added the comment: This is a nasty one and mainly it's the reason why there are no tests for abort() method. In FTP, ABOR command is supposed to be sent as OOB (out-of-band) urgent data and the dummy FTP server we're using for the funcional tests must

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-07 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 31220cd936d2 by Giampaolo Rodola' in branch '3.1': #12002 - ftplib's abort() method raises TypeError http://hg.python.org/cpython/rev/31220cd936d2 -- nosy: +python-dev ___ Python tracker

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-06 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the report. If you would like to turn your suggestion into a diff file (see guidelines at http://docs.python.org/devguide) containing the code change and a test, you could get into the Misc/ACKS file and get eternal glory :)

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-05 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12002 ___

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-05 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- assignee: - giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12002 ___ ___

[issue12002] ftplib.FTP.abort fails with TypeError on Python 3.x

2011-05-04 Thread Robert Xiao
New submission from Robert Xiao nneon...@gmail.com: On Python 3.2, calling abort() on an ftplib.FTP object will cause an exception: ftp = ftplib.FTP('localhost') ftp.abort() Traceback (most recent call last): File stdin, line 1, in module File /usr/lib/python3.2/ftplib.py, line 246, in