[issue11594] 2to3 does not preserve line endings

Alexander Belchenko report at bugs.python.org
Mon Mar 21 14:16:35 CET 2011


Alexander Belchenko <bialix at ukr.net> added the comment:

Éric, thank you for the proposal, but I'm not familiar enough with the codebase to work on it. 

The short scan over the tests reveals that there is at least one test which tries to test CRLF behavior, in the file test_refactor.py, but I don't understand what it doing?

    def test_crlf_newlines(self):
        old_sep = os.linesep
        os.linesep = "\r\n"
        try:
            fn = os.path.join(TEST_DATA_DIR, "crlf.py")
            fixes = refactor.get_fixers_from_package("lib2to3.fixes")
            self.check_file_refactoring(fn, fixes)
        finally:
            os.linesep = old_sep

So, in theory I can modify that test to check what if the file has LF-only line-endings originally, but os.linesep is CRLF, but then I don't know what the content I should create and how to run fixer over that.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11594>
_______________________________________


More information about the Python-bugs-list mailing list