@@ -105,7 +105,7 @@ in asynchronous generators:
1051053. https://discuss.python.org/t/66886
106106
107107Additionally, this design decision has `come up
108- <https://stackoverflow.com/questions/47376408> `_ on StackOverflow.
108+ <https://stackoverflow.com/questions/47376408> `__ on StackOverflow.
109109
110110
111111Subgenerator delegation is useful for asynchronous generators
@@ -188,7 +188,7 @@ All subgenerator delegation semantics are retained.
188188
1891891. :meth: `~object.__aiter__ ` is called to retrieve the asynchronous
190190 generator iterator.
191- 2. :meth: `~agen.asend ` is called to advance the asynchronous generato
191+ 2. :meth: `~agen.asend ` is called to advance the asynchronous generator
192192 iterator.
193193
194194``async yield from `` is only allowed in an asynchronous generator function;
@@ -329,7 +329,7 @@ Reference Implementation
329329========================
330330
331331A reference implementation of this PEP can be found
332- `here <https://github.com/python/cpython/compare/main...zerointensity:cpython:async-yield-from >`_ .
332+ `here <https://github.com/python/cpython/compare/main...zerointensity:cpython:async-yield-from >`__ .
333333
334334
335335Rejected Ideas
@@ -345,7 +345,7 @@ Thanks to Bartosz Sławecki for aiding in the development of the reference
345345implementation of this PEP. In addition, the :exc: `StopAsyncIteration `
346346changes in addition to the support for non-``None `` return values inside
347347asynchronous generators were largely based on Alex Dixon's design from
348- `python/cpython#125401 <https://github.com/python/cpython/pull/125401 >`_
348+ `python/cpython#125401 <https://github.com/python/cpython/pull/125401 >`__
349349
350350
351351Change History
0 commit comments