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 drzraf
Recipients amaury.forgeotdarc, drzraf
Date 2012-05-22.09:14:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337678054.87.0.0698952295483.issue14844@psf.upfronthosting.co.za>
In-reply-to
Content
$ python -c "import netrc; print netrc.netrc('/dev/stdin').authenticators('a')"<<<"machine a login b password c"
('b', None, 'c')

$ python -c "import netrc; print netrc.netrc('/dev/stdin').authenticators('a')"<<<"machine a login b password héhé"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/netrc.py", line 32, in __init__
    self._parse(file, fp)
  File "/usr/lib/python2.7/netrc.py", line 94, in _parse
    file, lexer.lineno)
netrc.NetrcParseError: bad follower token '\xc3' (/dev/stdin, line 1)
History
Date User Action Args
2012-05-22 09:14:14drzrafsetrecipients: + drzraf, amaury.forgeotdarc
2012-05-22 09:14:14drzrafsetmessageid: <1337678054.87.0.0698952295483.issue14844@psf.upfronthosting.co.za>
2012-05-22 09:14:14drzraflinkissue14844 messages
2012-05-22 09:14:14drzrafcreate