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: Drop support for asynchronous __aiter__
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: yselivanov Nosy List: ncoghlan, yselivanov
Priority: normal Keywords: patch

Created on 2017-10-06 04:23 by yselivanov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3903 merged yselivanov, 2017-10-06 04:28
PR 3906 merged yselivanov, 2017-10-06 06:22
Messages (2)
msg303796 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-10-06 04:23
As discussed in issue 27243, we want to drop support of asynchronous __aiter__ in Python 3.7.

Together with issue 30406, this will enable us to add support for using asynchronous generator expressions in synchronous functions (issue 31708)
msg303802 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-10-06 06:08
New changeset faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22 by Yury Selivanov in branch 'master':
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
https://github.com/python/cpython/commit/faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 75890
2017-10-23 16:17:55yselivanovlinkissue28645 superseder
2017-10-06 06:22:59yselivanovsetpull_requests: + pull_request3877
2017-10-06 06:09:14yselivanovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-10-06 06:08:59yselivanovsetmessages: + msg303802
2017-10-06 04:28:24yselivanovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request3874
2017-10-06 04:25:37yselivanovlinkissue31708 dependencies
2017-10-06 04:23:47yselivanovcreate