[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.137,1.138

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 25 Jun 2003 13:36:23 -0700


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

Modified Files:
	libfuncs.tex 
Log Message:
Removed useless intra-section references which jump to the top of the
section instead of the specific item being referenced.



Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.137
retrieving revision 1.138
diff -C2 -d -r1.137 -r1.138
*** libfuncs.tex	17 Jun 2003 02:37:06 -0000	1.137
--- libfuncs.tex	25 Jun 2003 20:36:20 -0000	1.138
***************
*** 124,128 ****
  
  \begin{funcdesc}{classmethod}{function}
-   \label{classmethod}
    Return a class method for \var{function}.
  
--- 124,127 ----
***************
*** 144,148 ****
  
    Class methods are different than C++ or Java static methods.
!   If you want those, see \ref{staticmethod}.
    \versionadded{2.2}
  \end{funcdesc}
--- 143,147 ----
  
    Class methods are different than C++ or Java static methods.
!   If you want those, see \function{staticmethod} in this section.
    \versionadded{2.2}
  \end{funcdesc}
***************
*** 903,907 ****
  
  \begin{funcdesc}{staticmethod}{function}
-   \label{staticmethod}
    Return a static method for \var{function}.
  
--- 902,905 ----
***************
*** 920,924 ****
  
    Static methods in Python are similar to those found in Java or C++.
!   For a more advanced concept, see \ref{classmethod}.
    \versionadded{2.2}
  \end{funcdesc}
--- 918,922 ----
  
    Static methods in Python are similar to those found in Java or C++.
!   For a more advanced concept, see \function{classmethod} in this section.
    \versionadded{2.2}
  \end{funcdesc}