From 504d8854176f1ee70ccb5784a2313575d420d519 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 7 Sep 2007 02:12:14 +0000 Subject: Fix docstring for getfullargspec(). --- Lib/inspect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py index 35d6e59..97c2998 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -731,8 +731,8 @@ def getargspec(func): def getfullargspec(func): """Get the names and default values of a function's arguments. - A tuple of seven things is returned: (args, varargs, kwonlyargs, - kwonlydefaults, varkw, defaults, annotations). + A tuple of seven things is returned: + (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults annotations). 'args' is a list of the argument names (it may contain nested lists). 'varargs' and 'varkw' are the names of the * and ** arguments or None. 'defaults' is an n-tuple of the default values of the last n arguments. -- cgit v0.12