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

Serhiy Storchaka webhook-mailer at python.org
Wed Nov 7 13:12:19 EST 2018


https://github.com/python/cpython/commit/bfe1839aa994f0d84471254418a4ecfa7c7c9b9c
commit: bfe1839aa994f0d84471254418a4ecfa7c7c9b9c
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2018-11-07T20:12:12+02:00
summary:

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

files:
M Doc/reference/expressions.rst

diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index fd7df4cfba97..fb27857a6f42 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -418,7 +418,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
 
 Due to their side effects on the containing scope, ``yield`` expressions
@@ -501,6 +501,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