Kaydet (Commit) f1fbc62a authored tarafından Fred Drake's avatar Fred Drake

Update the docstring for apply() so that "args" is marked as optional

(since it is).
üst 1cc8f836
...@@ -92,7 +92,7 @@ builtin_apply(PyObject *self, PyObject *args) ...@@ -92,7 +92,7 @@ builtin_apply(PyObject *self, PyObject *args)
} }
static char apply_doc[] = static char apply_doc[] =
"apply(object, args[, kwargs]) -> value\n\ "apply(object[, args[, kwargs]]) -> value\n\
\n\ \n\
Call a callable object 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.\n\ and keyword arguments taken from the optional dictionary kwargs.\n\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment