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.

Author francismb
Recipients francismb, maatt, python-dev, r.david.murray, vincele
Date 2014-09-27.18:15:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411841737.57.0.93130187089.issue6623@psf.upfronthosting.co.za>
In-reply-to
Content
I've downloaded 'remove_Netrc_class2.patch' and passes the test suite, the examples on the documentation run ok and manually from the command line:

$hg tip
changeset:   92597:e29866cb6b98
tag:         tip
parent:      92594:d43d4d4ebf2c
parent:      92596:54987723de99
...
$ hg status
M Lib/ftplib.py
M Lib/test/test_ftplib.py
? Modules/_testembed
$ ./python -m ftplib -d ftp.debian.org -ddebian
*cmd* 'USER anonymous'
*resp* '331 Please specify the password.'
*cmd* 'PASS *********'
*resp* '230 Login successful.'
*cmd* 'CWD debian'
*resp* '250 Directory successfully changed.'
*cmd* 'QUIT'
*resp* '221 Goodbye.'

My test '.netrc' file was:
$ cat ~/.netrc 
machine ftp.debian.org
login anonymous
password anonymous

The patch also looks good for me.
History
Date User Action Args
2014-09-27 18:15:37francismbsetrecipients: + francismb, r.david.murray, vincele, python-dev, maatt
2014-09-27 18:15:37francismbsetmessageid: <1411841737.57.0.93130187089.issue6623@psf.upfronthosting.co.za>
2014-09-27 18:15:37francismblinkissue6623 messages
2014-09-27 18:15:37francismbcreate