[Python-checkins] Add link to PEP 525 in Expressions. (GH-10333)

Miss Islington (bot) webhook-mailer at python.org
Wed Nov 7 13:35:43 EST 2018


https://github.com/python/cpython/commit/774d46f86cb3addfec7a5c48077bd554c0c02104
commit: 774d46f86cb3addfec7a5c48077bd554c0c02104
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-11-07T10:35:39-08:00
summary:

Add link to PEP 525 in Expressions. (GH-10333)

(cherry picked from commit bfe1839aa994f0d84471254418a4ecfa7c7c9b9c)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

files:
M Doc/reference/expressions.rst

diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 879eba8f586c..05f62cd38ba9 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -384,7 +384,7 @@ coroutine function to be an asynchronous generator. For example::
     def gen():  # defines a generator function
         yield 123
 
-    async def agen(): # defines an asynchronous generator function (PEP 525)
+    async def agen(): # defines an asynchronous generator function
         yield 123
 
 Generator functions are described below, while asynchronous generator
@@ -459,6 +459,10 @@ on the right hand side of an assignment statement.
       The proposal to introduce the :token:`yield_from` syntax, making delegation
       to sub-generators easy.
 
+   :pep:`525` - Asynchronous Generators
+      The proposal that expanded on :pep:`492` by adding generator capabilities to
+      coroutine functions.
+
 .. index:: object: generator
 .. _generator-methods:
 



More information about the Python-checkins mailing list