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 vstinner
Recipients barry, ezio.melotti, python-dev, r.david.murray, techtonik, vstinner
Date 2013-06-25.00:19:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372119594.25.0.204082714884.issue11390@psf.upfronthosting.co.za>
In-reply-to
Content
test_doctest.test_CLI() is also failing on Windows:

http://buildbot.python.org/all/builders/x86%20Windows%20Server%202003%20%5BSB%5D%203.x/builds/1078/steps/test/logs/stdio

It looks like an issue with Windows newline (\r\n) versus UNIX newline (\n). test_CLI() decodes the bytes output from UTF-8, but do not normalize newlines.

The universal_newlines=True option can be passed to subprocess, which is not possible currently using script_helper. Is there function somewhere else to normalize newlines?
History
Date User Action Args
2013-06-25 00:19:54vstinnersetrecipients: + vstinner, barry, techtonik, ezio.melotti, r.david.murray, python-dev
2013-06-25 00:19:54vstinnersetmessageid: <1372119594.25.0.204082714884.issue11390@psf.upfronthosting.co.za>
2013-06-25 00:19:54vstinnerlinkissue11390 messages
2013-06-25 00:19:53vstinnercreate