This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: asyncio sendfile sends extra data in the last chunk in fallback mode
Type: behavior Stage: resolved
Components: asyncio Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2019-06-14 10:25 by asvetlov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14075 merged asvetlov, 2019-06-14 10:27
PR 14100 merged miss-islington, 2019-06-15 11:05
PR 14103 merged asvetlov, 2019-06-15 11:17
Messages (4)
msg345571 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2019-06-14 10:25
My fault introduced in 3.7 in initial async sendfile implementation
msg345671 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2019-06-15 11:05
New changeset ef2152354f03a165c5e3adb53e2276934fabd50a by Andrew Svetlov in branch 'master':
bpo-37279: Fix asyncio sendfile support when  extra data are sent in fallback mode. (GH-14075)
https://github.com/python/cpython/commit/ef2152354f03a165c5e3adb53e2276934fabd50a
msg345672 - (view) Author: miss-islington (miss-islington) Date: 2019-06-15 11:24
New changeset bb07321c6a7e1cbe597c3fc5fa275a85d0f50acb by Miss Islington (bot) in branch '3.8':
bpo-37279: Fix asyncio sendfile support when  extra data are sent in fallback mode. (GH-14075)
https://github.com/python/cpython/commit/bb07321c6a7e1cbe597c3fc5fa275a85d0f50acb
msg345677 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2019-06-15 11:56
New changeset e5d67f1e31381d28b24f6e1c0f8388d9bf0bfc5f by Andrew Svetlov in branch '3.7':
[3.7] bpo-37279: Fix asyncio sendfile support when  extra data are sent in fallback mode. (GH-14075). (GH-14103)
https://github.com/python/cpython/commit/e5d67f1e31381d28b24f6e1c0f8388d9bf0bfc5f
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81460
2019-06-15 11:56:30asvetlovsetmessages: + msg345677
2019-06-15 11:25:57asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-06-15 11:24:19miss-islingtonsetnosy: + miss-islington
messages: + msg345672
2019-06-15 11:17:45asvetlovsetpull_requests: + pull_request13957
2019-06-15 11:05:35miss-islingtonsetpull_requests: + pull_request13955
2019-06-15 11:05:24asvetlovsetmessages: + msg345671
2019-06-14 10:27:13asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request13933
2019-06-14 10:25:04asvetlovcreate