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 chris.jerdonek
Recipients asvetlov, chris.jerdonek, georg.brandl, gregory.p.smith, pitrou, r.david.murray
Date 2012-08-15.21:34:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345066484.33.0.996274153748.issue12623@psf.upfronthosting.co.za>
In-reply-to
Content
> Looking the code this test will fail on Windows. I cannot check it just now but looks like this is the problem.

Would it be possible to do something like the following to check this on a non-Windows machine (since the Python implementation of io respects the mutability of os.linesep but perhaps not the C version)?  It seems so.

>>> import _pyio, io, os
>>> io.TextIOWrapper = _pyio.TextIOWrapper
>>> os.linesep = "\r\n"
etc.
History
Date User Action Args
2012-08-15 21:34:44chris.jerdoneksetrecipients: + chris.jerdonek, georg.brandl, gregory.p.smith, pitrou, r.david.murray, asvetlov
2012-08-15 21:34:44chris.jerdoneksetmessageid: <1345066484.33.0.996274153748.issue12623@psf.upfronthosting.co.za>
2012-08-15 21:34:43chris.jerdoneklinkissue12623 messages
2012-08-15 21:34:43chris.jerdonekcreate