mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue 22357: Document __qualname__ in inspect.rst
This commit is contained in:
parent
f28fa66351
commit
0339568753
1 changed files with 11 additions and 0 deletions
|
@ -43,6 +43,11 @@ attributes:
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
| class | __doc__ | documentation string |
|
| class | __doc__ | documentation string |
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
|
| | __name__ | name with which this |
|
||||||
|
| | | class was defined |
|
||||||
|
+-----------+-----------------+---------------------------+
|
||||||
|
| | __qualname__ | qualified name |
|
||||||
|
+-----------+-----------------+---------------------------+
|
||||||
| | __module__ | name of module in which |
|
| | __module__ | name of module in which |
|
||||||
| | | this class was defined |
|
| | | this class was defined |
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
|
@ -51,6 +56,8 @@ attributes:
|
||||||
| | __name__ | name with which this |
|
| | __name__ | name with which this |
|
||||||
| | | method was defined |
|
| | | method was defined |
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
|
| | __qualname__ | qualified name |
|
||||||
|
+-----------+-----------------+---------------------------+
|
||||||
| | __func__ | function object |
|
| | __func__ | function object |
|
||||||
| | | containing implementation |
|
| | | containing implementation |
|
||||||
| | | of method |
|
| | | of method |
|
||||||
|
@ -64,6 +71,8 @@ attributes:
|
||||||
| | __name__ | name with which this |
|
| | __name__ | name with which this |
|
||||||
| | | function was defined |
|
| | | function was defined |
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
|
| | __qualname__ | qualified name |
|
||||||
|
+-----------+-----------------+---------------------------+
|
||||||
| | __code__ | code object containing |
|
| | __code__ | code object containing |
|
||||||
| | | compiled function |
|
| | | compiled function |
|
||||||
| | | :term:`bytecode` |
|
| | | :term:`bytecode` |
|
||||||
|
@ -164,6 +173,8 @@ attributes:
|
||||||
| | __name__ | original name of this |
|
| | __name__ | original name of this |
|
||||||
| | | function or method |
|
| | | function or method |
|
||||||
+-----------+-----------------+---------------------------+
|
+-----------+-----------------+---------------------------+
|
||||||
|
| | __qualname__ | qualified name |
|
||||||
|
+-----------+-----------------+---------------------------+
|
||||||
| | __self__ | instance to which a |
|
| | __self__ | instance to which a |
|
||||||
| | | method is bound, or |
|
| | | method is bound, or |
|
||||||
| | | ``None`` |
|
| | | ``None`` |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue