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.

classification
Title: 2to3 tests fail on Windows due to line endings
Type: Stage:
Components: 2to3 (2.x to 3.x conversion tool) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: abbeyj, benjamin.peterson
Priority: normal Keywords: patch

Created on 2009-05-28 05:05 by abbeyj, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
2to3_native_eol.patch abbeyj, 2009-05-28 05:04
Messages (2)
msg88464 - (view) Author: James Abbatiello (abbeyj) Date: 2009-05-28 05:04
The tests for 2to3 currently fail on Windows.  Data is read from a file
in binary mode and then written to a temporary file in text mode which
doubles up the carriage returns.

Additionally, several files are missing the svn:eol-style property.  The
attached patch addresses both problems.
msg88475 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-05-28 20:33
Thanks for the patch. Applied in r72994.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50384
2009-05-28 20:33:36benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg88475

resolution: fixed
2009-05-28 05:05:06abbeyjcreate