[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 39a56e55231be00d52fa183fcd2b7d88619ced4b by Miss Skeleton (bot) in branch '3.8': [3.8] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23070) https://github.com/python/cpython/commit/39a56e55231be00d52fa183f

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 3defcbac2c9ff4306ed5b7fb37d12637eb188306 by Miss Skeleton (bot) in branch '3.9': [3.9] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23071) https://github.com/python/cpython/commit/3defcbac2c9ff4306ed5b7fb

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: duplicate -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +21991 pull_request: https://github.com/python/cpython/pull/23071 ___ Python tracker ___ __

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread Ronald Oussoren
Change by Ronald Oussoren : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 2165cea548f961b308050f30d1f042a377651d44 by Ronald Oussoren in branch 'master': bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) https://github.com/python/cpython/commit/2165cea548f961b308050f30d1f042a377651d44

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +21990 pull_request: https://github.com/python/cpython/pull/23070 ___ Python tracker ___ __

[issue29566] binhex() creates files with mixed line endings

2020-10-31 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've added a PR that changes the line ending to "\r" in encoded data. Not very useful now that binhex is deprecated, but this allows us to close this issue. -- versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.5, Python 3.6, Python 3.7

[issue29566] binhex() creates files with mixed line endings

2020-10-31 Thread Ronald Oussoren
Change by Ronald Oussoren : -- keywords: +patch pull_requests: +21978 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23059 ___ Python tracker ___

[issue29566] binhex() creates files with mixed line endings

2017-02-15 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29566] binhex() creates files with mixed line endings

2017-02-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: binhex.binhex() creates files with mixed line endings in Python 3. The header line '(This file must be converted with BinHex 4.0)' is separated from the data by LFs, but the data is split for lines by CRs. >>> import binhex >>> with open('inp', 'wb') as f: