[issue1345] Fix for test_netrc on Windows

2007-11-05 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +py3k resolution: -> invalid status: open -> closed superseder: -> py3k: duplicated line endings when using read(1) __ Tracker <[EMAIL PROTECTED]> _

[issue1345] Fix for test_netrc on Windows

2007-10-30 Thread billiejoex
Changes by billiejoex: __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-b

[issue1345] Fix for test_netrc on Windows

2007-10-30 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: > Are you sure this is the proper fix? Why does netrc.py insist on not > having \r\n line endings? It opens the file in text mode so I don't > quite understand your patch. I don't quite understand why it fails. :/ I've to take more tim

[issue1345] Fix for test_netrc on Windows

2007-10-29 Thread Guido van Rossum
Guido van Rossum added the comment: Are you sure this is the proper fix? Why does netrc.py insist on not having \r\n line endings? It opens the file in text mode so I don't quite understand your patch. -- nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]>

[issue1345] Fix for test_netrc on Windows

2007-10-28 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1345] Fix for test_netrc on Windows

2007-10-27 Thread Christian Heimes
New submission from Christian Heimes: Index: Lib/test/test_netrc.py === --- Lib/test/test_netrc.py (revision 58695) +++ Lib/test/test_netrc.py (working copy) @@ -25,7 +25,7 @@ mode = 'w' if sys.platform no