[Python-checkins] python/dist/src/Doc/lib libhtmlparser.tex, 1.5, 1.6

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Dec 30 11:18:25 EST 2003


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

Modified Files:
	libhtmlparser.tex 
Log Message:
- remove crufty markup that's no longer needed to make the
  presentation work right (and didn't work anyway)
- fix minor typo


Index: libhtmlparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libhtmlparser.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** libhtmlparser.tex	7 Dec 2003 12:46:16 -0000	1.5
--- libhtmlparser.tex	30 Dec 2003 16:18:23 -0000	1.6
***************
*** 110,115 ****
  This method is called when a comment is encountered.  The
  \var{comment} argument is a string containing the text between the
! \samp{{-}{-}} and \samp{{-}{-}} delimiters, but not the delimiters
! themselves.  For example, the comment \samp{<!{-}{-}text{-}{-}>} will
  cause this method to be called with the argument \code{'text'}.  It is
  intended to be overridden by a derived class; the base class
--- 110,115 ----
  This method is called when a comment is encountered.  The
  \var{comment} argument is a string containing the text between the
! \samp{--} and \samp{--} delimiters, but not the delimiters
! themselves.  For example, the comment \samp{<!--text-->} will
  cause this method to be called with the argument \code{'text'}.  It is
  intended to be overridden by a derived class; the base class
***************
*** 133,137 ****
  
  \note{The \class{HTMLParser} class uses the SGML syntactic rules for
! processing instruction.  An XHTML processing instruction using the
  trailing \character{?} will cause the \character{?} to be included in
  \var{data}.}
--- 133,137 ----
  
  \note{The \class{HTMLParser} class uses the SGML syntactic rules for
! processing instructions.  An XHTML processing instruction using the
  trailing \character{?} will cause the \character{?} to be included in
  \var{data}.}





More information about the Python-checkins mailing list