summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-10-20 16:30:51 -0400
committerYury Selivanov <yury@magic.io>2016-10-20 16:30:51 -0400
commit37050b6484ed7f79eb1e9f8aca5e1df28ec69c4a (patch)
treed20190ff59172ceb00edbda24937fe86a0387d60
parent50b3560ec96d48ae8588fb7cae40e00df7ecb0a3 (diff)
downloadcpython-37050b6484ed7f79eb1e9f8aca5e1df28ec69c4a.tar.gz
Issue #26010: fix typos; rewording
-rw-r--r--Doc/library/inspect.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index 58e37a3dc9..fc815a672c 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -1253,25 +1253,26 @@ the following flags:
.. data:: CO_COROUTINE
- The flag is set when the code object is a coroutine function, i.e.
- a coroutine object is returned when the code object is executed. See
- :pep:`492` for more details.
+ The flag is set when the code object is a coroutine function.
+ When the code object is executed it returns a coroutine object.
+ See :pep:`492` for more details.
.. versionadded:: 3.5
.. data:: CO_ITERABLE_COROUTINE
- Used to turn generators into generator-based coroutines. Generator
- objects with this flag can be used in ``await`` expression, and can
- ``yield from`` coroutine objects. See :pep:`492` for more details.
+ The flag is used to transform generators into generator-based
+ coroutines. Generator objects with this flag can be used in
+ ``await`` expression, and can ``yield from`` coroutine objects.
+ See :pep:`492` for more details.
.. versionadded:: 3.5
.. data:: CO_ASYNC_GENERATOR
- The flag is set when the code object is a asynchronous generator
- function, i.e. an asynchronous generator object is returned when the
- code object is executed. See :pep:`525` for more details.
+ The flag is set when the code object is an asynchronous generator
+ function. When the code object is executed it returns an
+ asynchronous generator object. See :pep:`525` for more details.
.. versionadded:: 3.6
@@ -1283,7 +1284,6 @@ the following flags:
for any introspection needs.
-
.. _inspect-module-cli:
Command Line Interface