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
29b90146
Commit
29b90146
authored
Mar 17, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove apply()
parent
c6b9bf95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
Doc/api/abstract.tex
Doc/api/abstract.tex
+3
-6
No files found.
Doc/api/abstract.tex
View file @
29b90146
...
...
@@ -233,8 +233,7 @@ determination.
be
\NULL
{}
.
\var
{
args
}
must not be
\NULL
{}
, use an empty tuple if
no arguments are needed. Returns the result of the call on success,
or
\NULL
{}
on failure. This is the equivalent of the Python
expression
\samp
{
apply(
\var
{
callable
_
object
}
,
\var
{
args
}
,
\var
{
kw
}
)
}
or
\samp
{
\var
{
callable
_
object
}
(*
\var
{
args
}
, **
\var
{
kw
}
)
}
.
expression
\samp
{
\var
{
callable
_
object
}
(*
\var
{
args
}
, **
\var
{
kw
}
)
}
.
\versionadded
{
2.2
}
\end{cfuncdesc}
...
...
@@ -245,8 +244,7 @@ determination.
given by the tuple
\var
{
args
}
. If no arguments are needed, then
\var
{
args
}
may be
\NULL
. Returns the result of the call on
success, or
\NULL
{}
on failure. This is the equivalent of the
Python expression
\samp
{
apply(
\var
{
callable
_
object
}
,
\var
{
args
}
)
}
or
\samp
{
\var
{
callable
_
object
}
(*
\var
{
args
}
)
}
.
Python expression
\samp
{
\var
{
callable
_
object
}
(*
\var
{
args
}
)
}
.
\end{cfuncdesc}
\begin{cfuncdesc}
{
PyObject*
}{
PyObject
_
CallFunction
}{
PyObject *callable,
...
...
@@ -256,8 +254,7 @@ determination.
\cfunction
{
Py
_
BuildValue()
}
style format string. The format may be
\NULL
, indicating that no arguments are provided. Returns the
result of the call on success, or
\NULL
{}
on failure. This is the
equivalent of the Python expression
\samp
{
apply(
\var
{
callable
}
,
\var
{
args
}
)
}
or
\samp
{
\var
{
callable
}
(*
\var
{
args
}
)
}
.
equivalent of the Python expression
\samp
{
\var
{
callable
}
(*
\var
{
args
}
)
}
.
\end{cfuncdesc}
...
...
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