From: Fred Drake Date: Fri, 12 Jan 2001 17:05:05 +0000 (+0000) Subject: Update the docstring for apply() so that "args" is marked as optional X-Git-Tag: v2.1a1~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1fbc62a8c82dd172beb5def713d3815a562ee65;p=python Update the docstring for apply() so that "args" is marked as optional (since it is). --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 1ad534f387..8f114f3617 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -92,7 +92,7 @@ builtin_apply(PyObject *self, PyObject *args) } static char apply_doc[] = -"apply(object, args[, kwargs]) -> value\n\ +"apply(object[, args[, kwargs]]) -> value\n\ \n\ Call a callable object with positional arguments taken from the tuple args,\n\ and keyword arguments taken from the optional dictionary kwargs.\n\