[issue40816] Add missed AsyncContextDecorator to contextlib

2020-11-05 Thread Ken Jin
Change by Ken Jin : -- nosy: +kj nosy_count: 5.0 -> 6.0 pull_requests: +22076 pull_request: https://github.com/python/cpython/pull/23164 ___ Python tracker ___

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-11-05 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.9 ___ Python tracker ___

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-11-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 178695b7aee7a7aacd49a3086060e06347d1e556 by Kazantcev Andrey in branch 'master': bpo-40816 Add AsyncContextDecorator class (GH-20516) https://github.com/python/cpython/commit/178695b7aee7a7aacd49a3086060e06347d1e556 -- nosy: +asvetlov

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-07-25 Thread Joshua Bronson
Change by Joshua Bronson : -- nosy: +jab ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-07-17 Thread John Belmonte
John Belmonte added the comment: Thank you heckad! I'm in need of a decorating asynccontextmanager, and glad that an implementation is in the works that I can copy from in the meantime. I hope Yuri reviews the PR before long. -- nosy: +John Belmonte

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-06-18 Thread Андрей Казанцев
Андрей Казанцев added the comment: Yury Selivanov, did you see the pull request? -- ___ Python tracker ___ ___ Python-bugs-list

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-06-06 Thread Андрей Казанцев
Андрей Казанцев added the comment: No, please look at the pull request. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-06-02 Thread Yury Selivanov
Yury Selivanov added the comment: This has long been implemented: https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager -- nosy: +yselivanov ___ Python tracker

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-05-29 Thread Андрей Казанцев
Change by Андрей Казанцев : -- keywords: +patch pull_requests: +19760 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20516 ___ Python tracker ___

[issue40816] Add missed AsyncContextDecorator to contextlib

2020-05-29 Thread Андрей Казанцев
New submission from Андрей Казанцев : I can use context manager as decorator but can't use async context manager. Seems it because didn't implemented AsyncContextDecorator class -- components: Library (Lib) messages: 370317 nosy: heckad priority: normal severity: normal status: open