[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7fd9559c9c97fcf0519ace33b9d76a81ae156523 by Berker Peksag in branch '3.5': Issue #29198: Document typing.AsyncGenerator https://github.com/python/cpython/commit/7fd9559c9c97fcf0519ace33b9d76a81ae156523 New changeset

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7fd9559c9c97fcf0519ace33b9d76a81ae156523 by Berker Peksag in branch '3.6': Issue #29198: Document typing.AsyncGenerator https://github.com/python/cpython/commit/7fd9559c9c97fcf0519ace33b9d76a81ae156523 New changeset

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7fd9559c9c97fcf0519ace33b9d76a81ae156523 by Berker Peksag in branch 'master': Issue #29198: Document typing.AsyncGenerator https://github.com/python/cpython/commit/7fd9559c9c97fcf0519ace33b9d76a81ae156523 New changeset

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset d7eb9526c4f4 by Berker Peksag in branch '3.5': Issue #29198: Fix indentation and markup in typing.rst https://hg.python.org/cpython/rev/d7eb9526c4f4 New changeset f49b6c35d1e3 by Berker Peksag in branch '3.6': Issue #29198: Merge from 3.5

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patches, Jelle :) -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> enhancement versions: +Python 3.5 ___ Python tracker

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset fe29826af634 by Berker Peksag in branch '3.5': Issue #29198: Document typing.AsyncGenerator https://hg.python.org/cpython/rev/fe29826af634 New changeset b475b076cc1f by Berker Peksag in branch '3.6': Issue #29198: Merge from 3.5

[issue29198] AsyncGenerator is missing from typing

2017-01-18 Thread Guido van Rossum
Guido van Rossum added the comment: So the changes to typing.py have been committed. Can someone commit the right doc patches? -- ___ Python tracker ___

[issue29198] AsyncGenerator is missing from typing

2017-01-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 87e8139420ed by Guido van Rossum in branch '3.5': Issue #29198: add AsyncGenerator (Jelle Zijlstra) https://hg.python.org/cpython/rev/87e8139420ed New changeset 5b771c662c00 by Guido van Rossum in branch '3.6': Issue #29198: add AsyncGenerator

[issue29198] AsyncGenerator is missing from typing

2017-01-08 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : Added file: http://bugs.python.org/file46220/typingindentation.patch ___ Python tracker ___

[issue29198] AsyncGenerator is missing from typing

2017-01-08 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : Added file: http://bugs.python.org/file46219/asyncgenerator3.patch ___ Python tracker ___

[issue29198] AsyncGenerator is missing from typing

2017-01-07 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : Added file: http://bugs.python.org/file46203/asyncgenerator2.patch ___ Python tracker ___

[issue29198] AsyncGenerator is missing from typing

2017-01-07 Thread Ivan Levkivskyi
Changes by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___

[issue29198] AsyncGenerator is missing from typing

2017-01-07 Thread Jelle Zijlstra
New submission from Jelle Zijlstra: PEP 525 async generators weren't added to typing.py, probably by oversight. I sent pull requests to typing and typeshed on GitHub to add an AsyncGenerator class and stub: - https://github.com/python/typing/pull/346 -