diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-10 21:41:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-10 21:41:22 (GMT) |
commit | 80b3f685b4be8af46b0c6cc19eeded89b78b7e1c (patch) | |
tree | 7e157af9fed3165fd709ee81ee4a6eccd609688e /Doc | |
parent | 6754d52521f597caf3adae1b59d8d8bfbc18fbce (diff) | |
download | cpython-80b3f685b4be8af46b0c6cc19eeded89b78b7e1c.zip cpython-80b3f685b4be8af46b0c6cc19eeded89b78b7e1c.tar.gz cpython-80b3f685b4be8af46b0c6cc19eeded89b78b7e1c.tar.bz2 |
SF bug: 751941 Invisible HTML tag
Added missing jump target labels.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 2924f78..973e293 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -119,6 +119,7 @@ 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, @@ -883,6 +884,7 @@ 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. |