[Python-checkins] r54620 - python/trunk/Doc/lib/libmailbox.tex

georg.brandl python-checkins at python.org
Fri Mar 30 19:48:40 CEST 2007


Author: georg.brandl
Date: Fri Mar 30 19:48:39 2007
New Revision: 54620

Modified:
   python/trunk/Doc/lib/libmailbox.tex
Log:
Markup fix.


Modified: python/trunk/Doc/lib/libmailbox.tex
==============================================================================
--- python/trunk/Doc/lib/libmailbox.tex	(original)
+++ python/trunk/Doc/lib/libmailbox.tex	Fri Mar 30 19:48:39 2007
@@ -1285,13 +1285,13 @@
 separated by any line that begins exactly with the string \code{'From
 '} (note the trailing space) if preceded by exactly two newlines.
 Because of the wide-range of variations in practice, nothing else on
-the From_ line should be considered.  However, the current
+the \samp{From_} line should be considered.  However, the current
 implementation doesn't check for the leading two newlines.  This is
 usually fine for most applications.
 
 The \class{UnixMailbox} class implements a more strict version of
-From_ line checking, using a regular expression that usually correctly
-matched From_ delimiters.  It considers delimiter line to be separated
+\samp{From_} line checking, using a regular expression that usually correctly
+matched \samp{From_} delimiters.  It considers delimiter line to be separated
 by \samp{From \var{name} \var{time}} lines.  For maximum portability,
 use the \class{PortableUnixMailbox} class instead.  This class is
 identical to \class{UnixMailbox} except that individual messages are


More information about the Python-checkins mailing list