Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2b9bc08e
Commit
2b9bc08e
authored
Jun 25, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless intra-section references which jump to the top of the
section instead of the specific item being referenced.
parent
2dd8c426
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
Doc/lib/libfuncs.tex
Doc/lib/libfuncs.tex
+2
-4
No files found.
Doc/lib/libfuncs.tex
View file @
2b9bc08e
...
...
@@ -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}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment