diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:12:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:12:09 (GMT) |
commit | 98b28fddd8e63e1a9410facee3e41925eed8ac46 (patch) | |
tree | 410d277cbb20078d5fd226e8dd4d24bd225237d8 /Doc/library/inspect.rst | |
parent | 6039db8de30b5c20ba864cc4127fbfabf6fc0641 (diff) | |
parent | bfdcd436f0410e2b3eb34ce4fd7411488d3f13fb (diff) | |
download | cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.zip cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.tar.gz cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.tar.bz2 |
Issue #18758: Fixed and improved cross-references.
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 40e0158..de5a0b3 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -928,8 +928,9 @@ but avoids executing code when it fetches attributes. that raise AttributeError). It can also return descriptors objects instead of instance members. - If the instance :attr:`__dict__` is shadowed by another member (for example a - property) then this function will be unable to find instance members. + If the instance :attr:`~object.__dict__` is shadowed by another member (for + example a property) then this function will be unable to find instance + members. .. versionadded:: 3.2 |