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
7b912120
Commit
7b912120
authored
Dec 23, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted apply() docstring based on comments from Gerrit Holl
<gerrit.holl@pobox.com>.
parent
fbff97a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Python/bltinmodule.c
Python/bltinmodule.c
+4
-3
No files found.
Python/bltinmodule.c
View file @
7b912120
...
@@ -130,10 +130,11 @@ builtin_apply(self, args)
...
@@ -130,10 +130,11 @@ builtin_apply(self, args)
}
}
static
char
apply_doc
[]
=
static
char
apply_doc
[]
=
"apply(
function
, args[, kwargs]) -> value
\n
\
"apply(
object
, args[, kwargs]) -> value
\n
\
\n
\
\n
\
Call a function with positional arguments taken from the tuple args,
\n
\
Call a callable object with positional arguments taken from the tuple args,
\n
\
and keyword arguments taken from the optional dictionary kwargs."
;
and keyword arguments taken from the optional dictionary kwargs.
\n
\
Note that classes are callable, as are instances with a __call__() method."
;
static
PyObject
*
static
PyObject
*
...
...
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