diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-17 17:02:42 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-17 17:02:42 (GMT) |
commit | c135f0a8500475b5e649c6f76b8c99f0e2375847 (patch) | |
tree | 216df3c93faadec6498428bcd31a986aecbd0e16 /Doc/library/inspect.rst | |
parent | 13e09709b455da241340bbf7513a48e05670fc14 (diff) | |
download | cpython-c135f0a8500475b5e649c6f76b8c99f0e2375847.zip cpython-c135f0a8500475b5e649c6f76b8c99f0e2375847.tar.gz cpython-c135f0a8500475b5e649c6f76b8c99f0e2375847.tar.bz2 |
docs: Fix inspect docs re gi_yieldfrom
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 3b62e7f..3ffc115 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -178,6 +178,10 @@ attributes: +-----------+-----------------+---------------------------+ | | gi_code | code | +-----------+-----------------+---------------------------+ +| | gi_yieldfrom | object being iterated by | +| | | ``yield from``, or | +| | | ``None`` | ++-----------+-----------------+---------------------------+ | coroutine | __name__ | name | +-----------+-----------------+---------------------------+ | | __qualname__ | qualified name | @@ -191,10 +195,6 @@ attributes: +-----------+-----------------+---------------------------+ | | cr_code | code | +-----------+-----------------+---------------------------+ -| | gi_yieldfrom | object being iterated by | -| | | ``yield from``, or | -| | | ``None`` | -+-----------+-----------------+---------------------------+ | builtin | __doc__ | documentation string | +-----------+-----------------+---------------------------+ | | __name__ | original name of this | |