[Python-checkins] python/dist/src/Doc/ref ref3.tex,1.100,1.101

mwh@users.sourceforge.net mwh@users.sourceforge.net
Wed, 05 Mar 2003 06:21:03 -0800


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory sc8-pr-cvs1:/tmp/cvs-serv28992

Modified Files:
	ref3.tex 
Log Message:
I thought it was common practice to check things compiled before
checking them in?  Oh well, this fixes various obvious mistakes and
changes a subsubsubsection (which doesn't exist) into a subsubsection
(which does).  I'm not sure this matches the intent, but it seems to
read OK on a quick skim.


Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.100
retrieving revision 1.101
diff -C2 -d -r1.100 -r1.101
*** ref3.tex	28 Feb 2003 14:11:45 -0000	1.100
--- ref3.tex	5 Mar 2003 14:20:58 -0000	1.101
***************
*** 1200,1204 ****
  \end{methoddesc}
  
! \subsubsection{More attribute access for new-style classes \lable{new-style-attribute-access}}
  
  The following methods only apply to new-style classes.
--- 1200,1204 ----
  \end{methoddesc}
  
! \subsubsection{More attribute access for new-style classes \label{new-style-attribute-access}}
  
  The following methods only apply to new-style classes.
***************
*** 1216,1220 ****
  \end{methoddesc}
  
! \subsubsubsection{Implementing Descriptors \label{descriptors}}
  
  The following methods only apply when an instance of the class
--- 1216,1220 ----
  \end{methoddesc}
  
! \subsubsection{Implementing Descriptors \label{descriptors}}
  
  The following methods only apply when an instance of the class
***************
*** 1236,1246 ****
  
  \begin{methoddesc}[object]{__set__}{self, instance, value}
! Called to set the attribute on an instance \{instance} of the owner
  class to a new value, \var{value}.
  \end{methoddesc}
  
  \begin{methoddesc}[object]{__delete__}{self, instance}
! Called to delete the attribute on an instance \{instance} of the owner
! class.
  \end{methoddesc}
  
--- 1236,1246 ----
  
  \begin{methoddesc}[object]{__set__}{self, instance, value}
! Called to set the attribute on an instance \var{instance} of the owner
  class to a new value, \var{value}.
  \end{methoddesc}
  
  \begin{methoddesc}[object]{__delete__}{self, instance}
! Called to delete the attribute on an instance \var{instance} of the
! owner class.
  \end{methoddesc}