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
051aa773
Commit
051aa773
authored
Oct 19, 2007
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport r58542.
parent
dd4b025a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
Doc/lib/libfuncs.tex
Doc/lib/libfuncs.tex
+4
-6
No files found.
Doc/lib/libfuncs.tex
View file @
051aa773
...
...
@@ -1280,13 +1280,11 @@ bypass these functions without concerns about missing something important.
to be added to the end of the argument list.
Calling
\function
{
apply()
}
is different from just calling
\code
{
\var
{
function
}
(
\var
{
args
}
)
}
, since in that case there is always
exactly one argument. The use of
\function
{
apply()
}
is equivalent
to
\code
{
\var
{
function
}
(*
\var
{
args
}
, **
\var
{
keywords
}
)
}
.
Use of
\function
{
apply()
}
is not necessary since the ``extended call
syntax,'' as used in the last example, is completely equivalent.
exactly one argument. The use of
\function
{
apply()
}
is exactly
equivalent to
\code
{
\var
{
function
}
(*
\var
{
args
}
, **
\var
{
keywords
}
)
}
.
\deprecated
{
2.3
}{
Use the extended call syntax
instead, as described
above
.
}
\deprecated
{
2.3
}{
Use the extended call syntax
with
\code
{
*args
}
and
\code
{
**keywords
}
instead
.
}
\end{funcdesc}
\begin{funcdesc}
{
buffer
}{
object
\optional
{
, offset
\optional
{
, size
}}}
...
...
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