diff options
| author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-17 13:02:42 -0400 |
|---|---|---|
| committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-17 13:02:42 -0400 |
| commit | c135f0a8500475b5e649c6f76b8c99f0e2375847 (patch) | |
| tree | 216df3c93faadec6498428bcd31a986aecbd0e16 | |
| parent | 13e09709b455da241340bbf7513a48e05670fc14 (diff) | |
| download | cpython-git-c135f0a8500475b5e649c6f76b8c99f0e2375847.tar.gz | |
docs: Fix inspect docs re gi_yieldfrom
| -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 3b62e7f5b9..3ffc1152be 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 | |
