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 christian.heimes
Recipients christian.heimes
Date 2007-10-27.21:45:48
SpamBayes Score 0.004813484
Marked as misclassified No
Message-id <1193521548.65.0.259822939924.issue1345@psf.upfronthosting.co.za>
In-reply-to
Content
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 not in ['cygwin']:
             mode += 't'
-        fp = open(temp_filename, mode)
+        fp = open(temp_filename, mode, newline='')
         fp.write(TEST_NETRC)
         fp.close()
History
Date User Action Args
2007-10-27 21:45:48christian.heimessetspambayes_score: 0.00481348 -> 0.004813484
recipients: + christian.heimes
2007-10-27 21:45:48christian.heimessetspambayes_score: 0.00481348 -> 0.00481348
messageid: <1193521548.65.0.259822939924.issue1345@psf.upfronthosting.co.za>
2007-10-27 21:45:48christian.heimeslinkissue1345 messages
2007-10-27 21:45:48christian.heimescreate