summaryrefslogtreecommitdiff
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-21 17:02:31 -0400
committerYury Selivanov <yselivanov@sprymix.com>2015-05-21 17:02:31 -0400
commita18cad543f72a4de79df3dca3d79a75e762420aa (patch)
tree5cc5a19ef5c595cd2606279f5ac86d903ac918ad /Doc/glossary.rst
parentb5601586223f13f77a16ed64f16bea1ece063997 (diff)
downloadcpython-git-a18cad543f72a4de79df3dca3d79a75e762420aa.tar.gz
Issue 24180: Fixes by Berker Peksag.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst12
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 6158a574ef..3b7975b595 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -74,16 +74,12 @@ Glossary
:keyword:`async with` statement by defining :meth:`__aenter__` and
:meth:`__aexit__` methods. Introduced by :pep:`492`.
- .. versionadded:: 3.5
-
asynchronous iterable
An object, that can be used in an :keyword:`async for` statement.
Must return an :term:`awaitable` from its :meth:`__aiter__` method,
which should in turn be resolved in an :term:`asynchronous iterator`
object. Introduced by :pep:`492`.
- .. versionadded:: 3.5
-
asynchronous iterator
An object that implements :meth:`__aiter__` and :meth:`__anext__`
methods, that must return :term:`awaitable` objects.
@@ -91,8 +87,6 @@ Glossary
iterator's :meth:`__anext__` method until it raises
:exc:`StopAsyncIteration` exception. Introduced by :pep:`492`.
- .. versionadded:: 3.5
-
attribute
A value associated with an object which is referenced by name using
dotted expressions. For example, if an object *o* has an attribute
@@ -103,8 +97,6 @@ Glossary
a :term:`coroutine` or an object with an :meth:`__await__` method.
See also :pep:`492`.
- .. versionadded:: 3.5
-
BDFL
Benevolent Dictator For Life, a.k.a. `Guido van Rossum
<https://www.python.org/~guido/>`_, Python's creator.
@@ -183,8 +175,6 @@ Glossary
:keyword:`async for`, and :keyword:`async with` keywords. Introduced
by :pep:`492`.
- .. versionadded:: 3.5
-
coroutine
Coroutines is a more generalized form of subroutines. Subroutines are
entered at one point and exited at another point. Coroutines, can be
@@ -192,8 +182,6 @@ Glossary
:keyword:`await` expressions, and :keyword:`async for` and
:keyword:`async with` statements. See also :pep:`492`.
- .. versionadded:: 3.5
-
CPython
The canonical implementation of the Python programming language, as
distributed on `python.org <https://www.python.org>`_. The term "CPython"