[issue41687] sendfile implementation is not compatible with Solaris

2020-09-16 Thread miss-islington
miss-islington added the comment: New changeset 6a39888c2c4bcfbcdc61a1953911ad30c62da1ef by Miss Islington (bot) in branch '3.9': bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128) https://github.com/python/cpython/commit/6a39888c2c4bcfbcdc61a1953911ad30c62da1ef ---

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +21329 pull_request: https://github.com/python/cpython/pull/22274 ___ Python tracker ___ __

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-16 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 7e356f17e4c91392b6fa45a512efc95923388813 by Łukasz Langa in branch '3.9': [3.9] bpo-41687: Fix sendfile implementation to work with Solaris (GH-22040) (GH-22273) https://github.com/python/cpython/commit/7e356f17e4c91392b6fa45a512efc95923388813 -

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-16 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 4.0 -> 5.0 pull_requests: +21328 pull_request: https://github.com/python/cpython/pull/22273 ___ Python tracker ___ __

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-09 Thread miss-islington
miss-islington added the comment: New changeset fa8c9e70104b0aef966a518eb3a80a4881906ae0 by Jakub Kulík in branch 'master': bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128) https://github.com/python/cpython/commit/fa8c9e70104b0aef966a518eb3a80a4881906ae0 --

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-07 Thread Jakub Kulik
Jakub Kulik added the comment: I just realized that the recently merged PR has broken error handling, so I opened another one with a followup fix. -- ___ Python tracker ___ _

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-07 Thread Jakub Kulik
Change by Jakub Kulik : -- pull_requests: +21209 pull_request: https://github.com/python/cpython/pull/22128 ___ Python tracker ___ _

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-05 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 8c0be6fd9101746235b63ddfb84106d1e9ca286b by Jakub Kulík in branch 'master': bpo-41687: Fix sendfile implementation to work with Solaris (#22040) https://github.com/python/cpython/commit/8c0be6fd9101746235b63ddfb84106d1e9ca286b -- nosy:

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-05 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ ___

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-01 Thread Jakub Kulik
Change by Jakub Kulik : -- keywords: +patch pull_requests: +21137 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22040 ___ Python tracker ___

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-01 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue41687] sendfile implementation is not compatible with Solaris

2020-09-01 Thread Jakub Kulik
New submission from Jakub Kulik : Hi, Sendfile on Solaris raises EINVAL if offset is equal or bigger than the size of the file. This is different from Linux, where similar sendfile call returns 0, which is used in an ad-hoc fashion to indicate EOF. Since Python sendfile implementation expect