[issue24450] Add cr_await calculated property to coroutine object

2015-07-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 34460219c0e0 by Yury Selivanov in branch '3.4': Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper https://hg.python.org/cpython/rev/34460219c0e0 New changeset 3555f7b5eac6 by Yury Selivanov in branch '3.5': Merge 3.4 (Issue #24450)

[issue24450] Add cr_await calculated property to coroutine object

2015-07-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9bae275e99b3 by Yury Selivanov in branch '3.5': Issue #24450: Proxy cr_await and gi_yieldfrom in @types.coroutine https://hg.python.org/cpython/rev/9bae275e99b3 New changeset 4d3bd9b82a62 by Yury Selivanov in branch 'default': Merge 3.5 (Issue #2445

[issue24450] Add cr_await calculated property to coroutine object

2015-07-02 Thread Yury Selivanov
Yury Selivanov added the comment: Benno, thanks for coming up with the idea and for the patches. Larry, thanks for approving this for 3.5! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6 ___ Pytho

[issue24450] Add cr_await calculated property to coroutine object

2015-07-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 84eb9a020011 by Yury Selivanov in branch '3.5': Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines. https://hg.python.org/cpython/rev/84eb9a020011 New changeset f4058528ab8c by Yury Selivanov in branch 'default': Merge 3.5 (Issue #

[issue24450] Add cr_await calculated property to coroutine object

2015-07-02 Thread Larry Hastings
Larry Hastings added the comment: I'll accept it for 3.5. Can it go in for beta 3, tagged in 48 hours? -- ___ Python tracker ___ ___

[issue24450] Add cr_await calculated property to coroutine object

2015-06-24 Thread Frank Wierzbicki
Frank Wierzbicki added the comment: This shouldn't be a problem for Jython. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue24450] Add cr_await calculated property to coroutine object

2015-06-24 Thread Yury Selivanov
Yury Selivanov added the comment: Larry, what's your opinion on this? cr_await is a new thing (trivial on the C level) on a new type, it shouldn't break anything. gi_yieldfrom is identical to cr_await. Can we add this to 3.5? -- ___ Python tracker

[issue24450] Add cr_await calculated property to coroutine object

2015-06-24 Thread Armin Rigo
Changes by Armin Rigo : -- nosy: -arigo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue24450] Add cr_await calculated property to coroutine object

2015-06-24 Thread Martin Panter
Martin Panter added the comment: For Benno’s original gi_yieldfrom property, I guess the asyncio.coroutines.CoroWrapper class would need updating. The GeneratorWrapper class for @types.coroutine probably should be updated too, since it already supports other internal generator properties. ---

[issue24450] Add cr_await calculated property to coroutine object

2015-06-22 Thread Nick Coghlan
Nick Coghlan added the comment: Guido indicated on python-dev that he considered it reasonable to view adding gi_yieldfrom as part of the PEP 492 implementation: https://mail.python.org/pipermail/python-dev/2015-June/140498.html That perspective makes sense to me as well, since it preserves th

[issue24450] Add cr_await calculated property to coroutine object

2015-06-22 Thread Yury Selivanov
Changes by Yury Selivanov : -- title: Add gi_yieldfrom calculated property to generator object -> Add cr_await calculated property to coroutine object ___ Python tracker ___ ___