[Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex,1.52,1.53

Fred L. Drake fdrake@users.sourceforge.net
Fri, 14 Dec 2001 08:57:34 -0800


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

Modified Files:
	ref5.tex 
Log Message:
Work around the problem of spaces after a "}" being dropped by LaTeX2HTML if
they were represented by newlines in the document source.
Partially fixes SF bug #493243.


Index: ref5.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref5.tex,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** ref5.tex	2001/12/12 11:56:33	1.52
--- ref5.tex	2001/12/14 16:57:31	1.53
***************
*** 511,516 ****
  A consequence of this is that although the \samp{*expression} syntax
  appears \emph{after} any keyword arguments, it is processed
! \emph{before} the keyword arguments (and the \samp{**expression}
! argument, if any -- see below).  So:
  
  \begin{verbatim}
--- 511,516 ----
  A consequence of this is that although the \samp{*expression} syntax
  appears \emph{after} any keyword arguments, it is processed
! \emph{before} the keyword arguments (and the
! \samp{**expression} argument, if any -- see below).  So:
  
  \begin{verbatim}
***************
*** 528,534 ****
  \end{verbatim}
  
! It is unusual for both keyword arguments and the \samp{*expression}
! syntax to be used in the same call, so in practice this confusion does
! not arise.
  
  If the syntax \samp{**expression} appears in the function call,
--- 528,534 ----
  \end{verbatim}
  
! It is unusual for both keyword arguments and the
! \samp{*expression} syntax to be used in the same call, so in practice
! this confusion does not arise.
  
  If the syntax \samp{**expression} appears in the function call,