I couldn't reproduce this issue. I tried reproducing this problem by extending the TestRefactoringTool class and creating two files: one file with LF line-endings and one file with CRLF line-endings.
The changes that I made can be found here: https://github.com/aaronang/cpython/commit/55e8bd317f37923e6e23780e6ae41858493e98d8.
The output of the tests:
Before: b'print("hi")\n\nprint("Like bad Windows newlines?")\n'
After: b'print("hi")\n\nprint("Like bad Windows newlines?")\n'
Before: b'print("hi")\r\n\r\nprint("Like bad Windows newlines?")\r\n'
After: b'print("hi")\r\n\r\nprint("Like bad Windows newlines?")\r\n'
Maybe this problem has been resolved? |