[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex, 1.129.8.8, 1.129.8.9

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue May 11 22:47:59 EDT 2004


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

Modified Files:
      Tag: release23-maint
	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.129.8.8
retrieving revision 1.129.8.9
diff -C2 -d -r1.129.8.8 -r1.129.8.9
*** libstdtypes.tex	8 Jan 2004 00:33:04 -0000	1.129.8.8
--- libstdtypes.tex	12 May 2004 02:47:56 -0000	1.129.8.9
***************
*** 1650,1654 ****
  
  The implementation adds a few special read-only attributes to several
! object types, where they are relevant:
  
  \begin{memberdesc}[object]{__dict__}
--- 1650,1655 ----
  
  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__}
***************
*** 1675,1676 ****
--- 1676,1681 ----
  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