From 03395687532243d3aae9b7a56a344080dcb959a4 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Sat, 30 May 2015 13:53:49 -0400 Subject: Issue 22357: Document __qualname__ in inspect.rst --- Doc/library/inspect.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index a6b5e80..57eb4ff 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -43,6 +43,11 @@ attributes: +-----------+-----------------+---------------------------+ | class | __doc__ | documentation string | +-----------+-----------------+---------------------------+ +| | __name__ | name with which this | +| | | class was defined | ++-----------+-----------------+---------------------------+ +| | __qualname__ | qualified name | ++-----------+-----------------+---------------------------+ | | __module__ | name of module in which | | | | this class was defined | +-----------+-----------------+---------------------------+ @@ -51,6 +56,8 @@ attributes: | | __name__ | name with which this | | | | method was defined | +-----------+-----------------+---------------------------+ +| | __qualname__ | qualified name | ++-----------+-----------------+---------------------------+ | | __func__ | function object | | | | containing implementation | | | | of method | @@ -64,6 +71,8 @@ attributes: | | __name__ | name with which this | | | | function was defined | +-----------+-----------------+---------------------------+ +| | __qualname__ | qualified name | ++-----------+-----------------+---------------------------+ | | __code__ | code object containing | | | | compiled function | | | | :term:`bytecode` | @@ -164,6 +173,8 @@ attributes: | | __name__ | original name of this | | | | function or method | +-----------+-----------------+---------------------------+ +| | __qualname__ | qualified name | ++-----------+-----------------+---------------------------+ | | __self__ | instance to which a | | | | method is bound, or | | | | ``None`` | -- cgit v0.12