[Python-checkins] CVS: python/dist/src/Doc/lib libshlex.tex,1.10,1.11

Fred L. Drake fdrake@users.sourceforge.net
Tue, 16 Jan 2001 12:52:44 -0800


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

Modified Files:
	libshlex.tex 
Log Message:

Fix a few small markup/consistency nits.


Index: libshlex.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshlex.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** libshlex.tex	2001/01/16 14:18:55	1.10
--- libshlex.tex	2001/01/16 20:52:41	1.11
***************
*** 80,85 ****
  returns \EOF.
  
! For more explicit control of source stacking, use the next two
! methods. 
  \end{methoddesc}
  
--- 80,85 ----
  returns \EOF.
  
! For more explicit control of source stacking, use the
! \method{push_source()} and \method{pop_source()} methods. 
  \end{methoddesc}
  
***************
*** 88,103 ****
  argument is specified it will later be available for use in error
  messages.  This is the same method used internally by the
! \method{sourcehook} method. (New in 2.1)
  \end{methoddesc}
  
! \begin{methoddesc}{pop_source}{}}
  Pop the last-pushed input source from the input stack.
  This is the same method used internally when the lexer reaches
! \EOF on a stacked input stream. (New in 2.1)
  \end{methoddesc}
  
  \begin{methoddesc}{error_leader}{\optional{file\optional{, line}}}
  This method generates an error message leader in the format of a
! \UNIX{} C compiler error label; the format is '"\%s", line \%d: ',
  where the \samp{\%s} is replaced with the name of the current source
  file and the \samp{\%d} with the current input line number (the
--- 88,105 ----
  argument is specified it will later be available for use in error
  messages.  This is the same method used internally by the
! \method{sourcehook} method.
! \versionadded{2.1}
  \end{methoddesc}
  
! \begin{methoddesc}{pop_source}{}
  Pop the last-pushed input source from the input stack.
  This is the same method used internally when the lexer reaches
! \EOF on a stacked input stream.
! \versionadded{2.1}
  \end{methoddesc}
  
  \begin{methoddesc}{error_leader}{\optional{file\optional{, line}}}
  This method generates an error message leader in the format of a
! \UNIX{} C compiler error label; the format is \code{'"\%s", line \%d: '},
  where the \samp{\%s} is replaced with the name of the current source
  file and the \samp{\%d} with the current input line number (the