[Python-checkins] cpython (3.5): docs: Fix inspect docs re gi_yieldfrom

yury.selivanov python-checkins at python.org
Mon Aug 17 19:02:59 CEST 2015


https://hg.python.org/cpython/rev/caa2d561e9dc
changeset:   97418:caa2d561e9dc
branch:      3.5
parent:      97416:41d47fe9375f
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Mon Aug 17 13:02:42 2015 -0400
summary:
  docs: Fix inspect docs re gi_yieldfrom

files:
  Doc/library/inspect.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -178,6 +178,10 @@
 +-----------+-----------------+---------------------------+
 |           | gi_code         | code                      |
 +-----------+-----------------+---------------------------+
+|           | gi_yieldfrom    | object being iterated by  |
+|           |                 | ``yield from``, or        |
+|           |                 | ``None``                  |
++-----------+-----------------+---------------------------+
 | coroutine | __name__        | name                      |
 +-----------+-----------------+---------------------------+
 |           | __qualname__    | qualified name            |
@@ -191,10 +195,6 @@
 +-----------+-----------------+---------------------------+
 |           | cr_code         | code                      |
 +-----------+-----------------+---------------------------+
-|           | gi_yieldfrom    | object being iterated by  |
-|           |                 | ``yield from``, or        |
-|           |                 | ``None``                  |
-+-----------+-----------------+---------------------------+
 | builtin   | __doc__         | documentation string      |
 +-----------+-----------------+---------------------------+
 |           | __name__        | original name of this     |

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list