[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex, 1.152, 1.153

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue May 11 22:48:31 EDT 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9385

Modified Files:
	libstdtypes.tex 
Log Message:
add note about the __name__ read-only attribute
(closes SF bug #952212)


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** libstdtypes.tex	9 Mar 2004 05:53:15 -0000	1.152
--- libstdtypes.tex	12 May 2004 02:48:29 -0000	1.153
***************
*** 1786,1790 ****
  
  The implementation adds a few special read-only attributes to several
! object types, where they are relevant:
  
  \begin{memberdesc}[object]{__dict__}
--- 1786,1791 ----
  
  The implementation adds a few special read-only attributes to several
! object types, where they are relevant.  Some of these are not reported
! by the \function{dir()} built-in function.
  
  \begin{memberdesc}[object]{__dict__}
***************
*** 1811,1812 ****
--- 1812,1817 ----
  classes, this will be an empty tuple.
  \end{memberdesc}
+ 
+ \begin{memberdesc}[class]{__name__}
+ The name of the class or type.
+ \end{memberdesc}




More information about the Python-checkins mailing list