[issue41879] Outdated description of async iterables in documentation of async for statement

2022-03-12 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-12-12 Thread miss-islington
miss-islington added the comment: New changeset be9e4402db64564f7bf0fedb3769cead46c0d4c4 by Miss Islington (bot) in branch '3.9': [3.9] bpo-41879: Doc: Fix description of async for statement (GH-23548) (GH-23749)

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-12-12 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +22607 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/23749 ___ Python tracker

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-12-11 Thread miss-islington
miss-islington added the comment: New changeset 4b8cdfcb22fbeaab9d954cb693a7fb3362a382b6 by Nick Gaya in branch 'master': bpo-41879: Doc: Fix description of async for statement (GH-23548) https://github.com/python/cpython/commit/4b8cdfcb22fbeaab9d954cb693a7fb3362a382b6 -- nosy:

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-11-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: You are right. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-11-28 Thread Nick Gaya
Nick Gaya added the comment: As described above, the issue is in the textual description, not the code snippet. I have opened a GitHub PR with a fix. -- resolution: out of date -> status: closed -> open ___ Python tracker

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-11-28 Thread Nick Gaya
Change by Nick Gaya : -- pull_requests: +22427 pull_request: https://github.com/python/cpython/pull/23548 ___ Python tracker ___

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-11-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: Both mentioned links have the correct code. They use sync __aiter__ and async __anext__ -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-09-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___ ___

[issue41879] Outdated description of async iterables in documentation of async for statement

2020-09-28 Thread Nick Gaya
New submission from Nick Gaya : The documentation for the `async for` statement incorrectly states that "An asynchronous iterable is able to call asynchronous code in its iter implementation". Actually, this behavior was deprecated in Python 3.6 and removed in Python 3.7. As of Python 3.7,