[issue28003] PEP 525 asynchronous generators implementation

2016-11-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f32ef6b210b by Yury Selivanov in branch '3.6': Issue #28003: Make WrappedVal, ASend and AThrow GC types https://hg.python.org/cpython/rev/9f32ef6b210b New changeset 6f51b495656c by Yury Selivanov in branch 'default': Merge 3.6 (issue #28003)

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Martin Panter
Martin Panter added the comment: I am getting a new GCC warning: ./Python/sysmodule.c:1425:28: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types] {"set_asyncgen_hooks", sys_set_asyncgen_hooks, ^~

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks, Martin, it should be fixed now. -- ___ Python tracker ___ ___

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 910e293663cb by Yury Selivanov in branch 'default': Issue #28003: Fix a compiler warning https://hg.python.org/cpython/rev/910e293663cb -- ___ Python tracker

[issue28003] PEP 525 asynchronous generators implementation

2016-09-08 Thread Yury Selivanov
Changes by Yury Selivanov : Added file: http://bugs.python.org/file44484/async_gen.patch ___ Python tracker ___

[issue28003] PEP 525 asynchronous generators implementation

2016-09-08 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue28003] PEP 525 asynchronous generators implementation

2016-09-08 Thread Yury Selivanov
Yury Selivanov added the comment: Committed. Thanks Victor for the review! -- ___ Python tracker ___ ___

[issue28003] PEP 525 asynchronous generators implementation

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5259588983ca by Yury Selivanov in branch 'default': Issue #28003: Implement PEP 525 -- Asynchronous Generators. https://hg.python.org/cpython/rev/5259588983ca -- nosy: +python-dev ___ Python tracker

[issue28003] PEP 525 asynchronous generators implementation

2016-09-07 Thread Yury Selivanov
New submission from Yury Selivanov: The PEP has been accepted, let's review the reference implementation and get it committed. -- assignee: yselivanov components: Interpreter Core files: asyncgen_1.patch keywords: patch messages: 274845 nosy: haypo, lukasz.langa, yselivanov priority: