mirror of https://github.com/python/cpython.git
add note about the __name__ read-only attribute
(closes SF bug #952212)
This commit is contained in:
parent
486cb0ac2a
commit
f72de0fb8c
|
@ -1785,7 +1785,8 @@ slice objects.
|
||||||
\subsection{Special Attributes \label{specialattrs}}
|
\subsection{Special Attributes \label{specialattrs}}
|
||||||
|
|
||||||
The implementation adds a few special read-only attributes to several
|
The implementation adds a few special read-only attributes to several
|
||||||
object types, where they are relevant:
|
object types, where they are relevant. Some of these are not reported
|
||||||
|
by the \function{dir()} built-in function.
|
||||||
|
|
||||||
\begin{memberdesc}[object]{__dict__}
|
\begin{memberdesc}[object]{__dict__}
|
||||||
A dictionary or other mapping object used to store an
|
A dictionary or other mapping object used to store an
|
||||||
|
@ -1810,3 +1811,7 @@ The class to which a class instance belongs.
|
||||||
The tuple of base classes of a class object. If there are no base
|
The tuple of base classes of a class object. If there are no base
|
||||||
classes, this will be an empty tuple.
|
classes, this will be an empty tuple.
|
||||||
\end{memberdesc}
|
\end{memberdesc}
|
||||||
|
|
||||||
|
\begin{memberdesc}[class]{__name__}
|
||||||
|
The name of the class or type.
|
||||||
|
\end{memberdesc}
|
||||||
|
|
Loading…
Reference in New Issue