From: Benjamin Peterson Date: Thu, 2 Jan 2014 18:22:30 +0000 (-0600) Subject: remove brackets X-Git-Tag: v3.4.0b2~47^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a990c69b8d8420967010181096e103ebe92406b;p=thirdparty%2FPython%2Fcpython.git remove brackets --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 625ea6ef251d..7612544ad0d2 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -752,7 +752,7 @@ Classes and functions metatype is in use, cls will be the first element of the tuple. -.. function:: getcallargs(func[, *args][, **kwds]) +.. function:: getcallargs(func, *args, **kwds) Bind the *args* and *kwds* to the argument names of the Python function or method *func*, as if it was called with them. For bound methods, bind also the