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
29f345dc
Commit
29f345dc
authored
Jun 26, 2003
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
markup consistency nits
parent
fb0ca212
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
Doc/lib/libfuncs.tex
Doc/lib/libfuncs.tex
+10
-9
No files found.
Doc/lib/libfuncs.tex
View file @
29f345dc
...
...
@@ -142,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
\function
{
staticmethod
}
in this section.
If you want those, see
\function
{
staticmethod
()
}
in this section.
\versionadded
{
2.2
}
\end{funcdesc}
...
...
@@ -681,13 +681,13 @@ class C:
\end{funcdesc}
\begin{funcdesc}
{
object
}{}
Return a new featureless object.
\function
{
object
}
is a base
for all new style classes. It has the methods that are common
to all instances of new style classes.
\versionadded
{
2.2
}
Return a new featureless object.
\function
{
object()
}
is a base
for all new style classes. It has the methods that are common
to all instances of new style classes.
\versionadded
{
2.2
}
\versionchanged
[This function does not accept any arguments.
Formerly, it accepted arguments but ignored them]
{
2.3
}
\versionchanged
[This function does not accept any arguments.
Formerly, it accepted arguments but ignored them]
{
2.3
}
\end{funcdesc}
\begin{funcdesc}
{
oct
}{
x
}
...
...
@@ -916,8 +916,9 @@ class C:
instance (such as
\code
{
C().f()
}
). The instance is ignored except
for its class.
Static methods in Python are similar to those found in Java or C++.
For a more advanced concept, see
\function
{
classmethod
}
in this section.
Static methods in Python are similar to those found in Java or
\Cpp
.
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