@@ -74,25 +74,19 @@ Glossary
7474 :keyword: `async with ` statement by defining :meth: `__aenter__ ` and
7575 :meth: `__aexit__ ` methods. Introduced by :pep: `492 `.
7676
77- .. versionadded :: 3.5
78-
7977 asynchronous iterable
8078 An object, that can be used in an :keyword: `async for ` statement.
8179 Must return an :term: `awaitable ` from its :meth: `__aiter__ ` method,
8280 which should in turn be resolved in an :term: `asynchronous iterator `
8381 object. Introduced by :pep: `492 `.
8482
85- .. versionadded :: 3.5
86-
8783 asynchronous iterator
8884 An object that implements :meth: `__aiter__ ` and :meth: `__anext__ `
8985 methods, that must return :term: `awaitable ` objects.
9086 :keyword: `async for ` resolves awaitable returned from asynchronous
9187 iterator's :meth: `__anext__ ` method until it raises
9288 :exc: `StopAsyncIteration ` exception. Introduced by :pep: `492 `.
9389
94- .. versionadded :: 3.5
95-
9690 attribute
9791 A value associated with an object which is referenced by name using
9892 dotted expressions. For example, if an object *o * has an attribute
@@ -103,8 +97,6 @@ Glossary
10397 a :term: `coroutine ` or an object with an :meth: `__await__ ` method.
10498 See also :pep: `492 `.
10599
106- .. versionadded :: 3.5
107-
108100 BDFL
109101 Benevolent Dictator For Life, a.k.a. `Guido van Rossum
110102 <https://www.python.org/~guido/> `_, Python's creator.
@@ -183,17 +175,13 @@ Glossary
183175 :keyword: `async for `, and :keyword: `async with ` keywords. Introduced
184176 by :pep: `492 `.
185177
186- .. versionadded :: 3.5
187-
188178 coroutine
189179 Coroutines is a more generalized form of subroutines. Subroutines are
190180 entered at one point and exited at another point. Coroutines, can be
191181 entered, exited, and resumed at many different points. See
192182 :keyword: `await ` expressions, and :keyword: `async for ` and
193183 :keyword: `async with ` statements. See also :pep: `492 `.
194184
195- .. versionadded :: 3.5
196-
197185 CPython
198186 The canonical implementation of the Python programming language, as
199187 distributed on `python.org <https://www.python.org >`_. The term "CPython"
0 commit comments