Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 504d885

Browse files
committed
Fix docstring for getfullargspec().
1 parent a5e8ab5 commit 504d885

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/inspect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,8 +731,8 @@ def getargspec(func):
731731
def getfullargspec(func):
732732
"""Get the names and default values of a function's arguments.
733733
734-
A tuple of seven things is returned: (args, varargs, kwonlyargs,
735-
kwonlydefaults, varkw, defaults, annotations).
734+
A tuple of seven things is returned:
735+
(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults annotations).
736736
'args' is a list of the argument names (it may contain nested lists).
737737
'varargs' and 'varkw' are the names of the * and ** arguments or None.
738738
'defaults' is an n-tuple of the default values of the last n arguments.

0 commit comments

Comments
 (0)