diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-25 20:36:20 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-25 20:36:20 (GMT) |
commit | 2b9bc08ee72cb01c65529f599a56c89b462eaca3 (patch) | |
tree | ee797b72c4f67b75899d04c45a16784af0d0409c | |
parent | 2dd8c426382d620cb5aa20cf75584a174a9aacb8 (diff) | |
download | cpython-2b9bc08ee72cb01c65529f599a56c89b462eaca3.zip cpython-2b9bc08ee72cb01c65529f599a56c89b462eaca3.tar.gz cpython-2b9bc08ee72cb01c65529f599a56c89b462eaca3.tar.bz2 |
Removed useless intra-section references which jump to the top of the
section instead of the specific item being referenced.
-rw-r--r-- | Doc/lib/libfuncs.tex | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 1998e23..a995d84 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -123,7 +123,6 @@ def my_import(name): \end{funcdesc} \begin{funcdesc}{classmethod}{function} - \label{classmethod} Return a class method for \var{function}. A class method receives the class as implicit first argument, @@ -143,7 +142,7 @@ class C: object is passed as the implied first argument. Class methods are different than C++ or Java static methods. - If you want those, see \ref{staticmethod}. + If you want those, see \function{staticmethod} in this section. \versionadded{2.2} \end{funcdesc} @@ -902,7 +901,6 @@ class C(object): \end{funcdesc} \begin{funcdesc}{staticmethod}{function} - \label{staticmethod} Return a static method for \var{function}. A static method does not receive an implicit first argument. @@ -919,7 +917,7 @@ class C: for its class. Static methods in Python are similar to those found in Java or C++. - For a more advanced concept, see \ref{classmethod}. + For a more advanced concept, see \function{classmethod} in this section. \versionadded{2.2} \end{funcdesc} |