Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
88c09447
Commit
88c09447
authored
Sep 21, 2012
by
Larry Hastings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention that "defaults" can be None for inspect.getfullargspec.
Also minor formatting cleanups.
parent
0ab93eeb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
Doc/library/inspect.rst
Doc/library/inspect.rst
+6
-5
No files found.
Doc/library/inspect.rst
View file @
88c09447
...
...
@@ -675,9 +675,9 @@ Classes and functions
:term:`named tuple` ``ArgSpec(args, varargs, keywords, defaults)`` is
returned. *args* is a list of the argument names. *varargs* and *keywords*
are the names of the ``*`` and ``**`` arguments or ``None``. *defaults* is a
tuple of default argument values or
None if there are no default arguments;
if this tuple has *n* elements, they correspond to the last *n* elements
listed in *args*.
tuple of default argument values or
``None`` if there are no default
arguments; if this tuple has *n* elements, they correspond to the last
*n* elements
listed in *args*.
.. deprecated:: 3.0
Use :func:`getfullargspec` instead, which provides information about
...
...
@@ -693,8 +693,9 @@ Classes and functions
annotations)``
*args* is a list of the argument names. *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. *kwonlyargs* is a list of
of the ``*`` and ``**`` arguments or ``None``. *defaults* is an *n*-tuple
of the default values of the last *n* arguments, or ``None`` if there are no
default arguments. *kwonlyargs* is a list of
keyword-only argument names. *kwonlydefaults* is a dictionary mapping names
from kwonlyargs to defaults. *annotations* is a dictionary mapping argument
names to annotations.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment