[Python-checkins] python/dist/src/Doc/lib libinspect.tex,1.16,1.17

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Jul 10 23:13:10 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32707/Doc/lib

Modified Files:
	libinspect.tex 
Log Message:
Clarify docs for inspect.getargspec() that the fourth value is None when there
are no default arguments for the function.


Index: libinspect.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libinspect.tex,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** libinspect.tex	12 May 2004 03:07:27 -0000	1.16
--- libinspect.tex	10 Jul 2004 21:13:06 -0000	1.17
***************
*** 256,262 ****
    \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}.
  \end{funcdesc}
  
--- 256,262 ----
    \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 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}
  



More information about the Python-checkins mailing list