[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset cf21d0031dd84544d4108765553c2b03dfe726c5 by Jason R. Coombs (Miss Islington (bot)) in branch '3.7': bpo-34108: Fix double carriage return in 2to3 on Windows (GH-8271) (#8275) https://github.com/python/cpython/commit/cf21d0031dd84544d4108765553c

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +7811 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset cafaf0447b950fd4f59edd8cbde040c61ae528f8 by Jason R. Coombs in branch 'master': bpo-34108: Fix double carriage return in 2to3 on Windows (#8271) https://github.com/python/cpython/commit/cafaf0447b950fd4f59edd8cbde040c61ae528f8 -- ___

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
Jason R. Coombs added the comment: The regression never got to 3.6, so this issue likely only affects 3.7+. -- versions: -Python 3.6 ___ Python tracker ___ __

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
Change by Jason R. Coombs : -- keywords: +patch pull_requests: +7806 stage: commit review -> patch review ___ Python tracker ___ ___

[issue34108] 2to3 munges new lines on Windows

2018-07-13 Thread Jason R. Coombs
New submission from Jason R. Coombs : In issue11594, we attempted to solve the newlines issue but inadvertently introduced extraneous CR before CRLF newlines when running on Windows. See https://github.com/python/cpython/pull/6483#issuecomment-401957049 for more details. -- assignee: