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
4800ff22
Commit
4800ff22
authored
Jul 10, 2004
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify docs for inspect.getargspec() that the fourth value is None when there
are no default arguments for the function.
parent
b21d0f21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Doc/lib/libinspect.tex
Doc/lib/libinspect.tex
+3
-3
No files found.
Doc/lib/libinspect.tex
View file @
4800ff22
...
...
@@ -255,9 +255,9 @@ Note:
\var
{
args
}
is a list of the argument names (it may contain nested lists).
\var
{
varargs
}
and
\var
{
varkw
}
are the names of the
\code
{
*
}
and
\code
{
**
}
arguments or
\code
{
None
}
.
\var
{
defaults
}
is a tuple of default argument values
; if this tuple
has
\var
{
n
}
elements, they correspond to the last
\var
{
n
}
elements
listed in
\var
{
args
}
.
\var
{
defaults
}
is a tuple of default argument values
or None if there are no
default arguments; if this tuple has
\var
{
n
}
elements, they correspond to
the last
\var
{
n
}
elements
listed in
\var
{
args
}
.
\end{funcdesc}
\begin{funcdesc}
{
getargvalues
}{
frame
}
...
...
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