[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread Ned Deily
Ned Deily added the comment: New changeset 420092e255389008b399efa61db300fe44356ee8 by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) (#7182)

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6817 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 7165754b6b5f3b7c07050d921fa1c58bba5f0ff1 by Yury Selivanov in branch 'master': bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) https://github.com/python/cpython/commit/7165754b6b5f3b7c07050d921fa1c58bba5f0ff1

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +6807 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32410] Implement loop.sock_sendfile method

2018-01-24 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32410] Implement loop.sock_sendfile method

2018-01-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 0a5e71b4c70aab87125a54d7a59765e18d7583a4 by Andrew Svetlov in branch 'master': bpo-32410: Improve sock_sendfile tests (#5294) https://github.com/python/cpython/commit/0a5e71b4c70aab87125a54d7a59765e18d7583a4

[issue32410] Implement loop.sock_sendfile method

2018-01-24 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +5141 stage: resolved -> patch review ___ Python tracker ___

[issue32410] Implement loop.sock_sendfile method

2018-01-23 Thread Yury Selivanov
Yury Selivanov added the comment: Andrew, test_cancel2 test fails 1 out of 10 times on my machine (log below). Could you please take a look? Also, can you rename sendfile tests to 'test_sock_sendfile_*'? {pydev} ~/d/p/cpython (master %) ยป ./python.exe -m test

[issue32410] Implement loop.sock_sendfile method

2018-01-19 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32410] Implement loop.sock_sendfile method

2018-01-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 7464e87a6511d3626b04c9833a262a77b1f21e23 by Andrew Svetlov in branch 'master': bpo-32410: Make SendfileNotAvailableError exception public (#5243)

[issue32410] Implement loop.sock_sendfile method

2018-01-19 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___

[issue32410] Implement loop.sock_sendfile method

2018-01-19 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +5088 ___ Python tracker ___ ___

[issue32410] Implement loop.sock_sendfile method

2018-01-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 6b5a27975a415108a5eac12ee302bf2b3233f4d4 by Andrew Svetlov in branch 'master': bpo-32410: Implement loop.sock_sendfile() (#4976) https://github.com/python/cpython/commit/6b5a27975a415108a5eac12ee302bf2b3233f4d4

[issue32410] Implement loop.sock_sendfile method

2017-12-22 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +4866 stage: -> patch review ___ Python tracker ___

[issue32410] Implement loop.sock_sendfile method

2017-12-22 Thread Andrew Svetlov
New submission from Andrew Svetlov : The method should be low-level coroutine, implemented on loops with native sendfile support only (UnixEventLoop). The signature should be close to socket.sendfile() method Next step is implementing loop.sendfile(transport, ...)