[Python-checkins] python/dist/src/Doc/lib libinspect.tex, 1.13.10.3, 1.13.10.4

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


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

Modified Files:
      Tag: release23-maint
	libinspect.tex 
Log Message:
Clarify docs for getargspec() that when there are not default values the fourth
value in the returned tuple is None.

Closes bug #637217 by clarifying the behavior.


Index: libinspect.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libinspect.tex,v
retrieving revision 1.13.10.3
retrieving revision 1.13.10.4
diff -C2 -d -r1.13.10.3 -r1.13.10.4
*** libinspect.tex	12 May 2004 03:03:44 -0000	1.13.10.3
--- libinspect.tex	10 Jul 2004 21:04:44 -0000	1.13.10.4
***************
*** 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 not
!   any; if the 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