[Python-checkins] CVS: python/dist/src/Doc/lib liburllib.tex,1.31,1.32

Skip Montanaro montanaro@users.sourceforge.net
Tue, 23 Jan 2001 22:36:08 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv11090

Modified Files:
	liburllib.tex 
Log Message:
documented (new) optional doseq parameter to urlencode.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** liburllib.tex	2000/12/15 23:57:51	1.31
--- liburllib.tex	2001/01/24 06:36:06	1.32
***************
*** 144,148 ****
  \end{funcdesc}
  
! \begin{funcdesc}{urlencode}{dict}
  Convert a dictionary to a ``url-encoded'' string, suitable to pass to
  \function{urlopen()} above as the optional \var{data} argument.  This
--- 144,148 ----
  \end{funcdesc}
  
! \begin{funcdesc}{urlencode}{dict\optional{, doseq}}
  Convert a dictionary to a ``url-encoded'' string, suitable to pass to
  \function{urlopen()} above as the optional \var{data} argument.  This
***************
*** 151,155 ****
  \code{\var{key}=\var{value}} pairs separated by \character{\&}
  characters, where both \var{key} and \var{value} are quoted using
! \function{quote_plus()} above.
  \end{funcdesc}
  
--- 151,157 ----
  \code{\var{key}=\var{value}} pairs separated by \character{\&}
  characters, where both \var{key} and \var{value} are quoted using
! \function{quote_plus()} above.  If the optional parameter \var{doseq} is
! present and evaluates to true, individual \code{\var{key}=\var{value}} pairs
! are generated for each element of the sequence.
  \end{funcdesc}