[Python-checkins] r77123 - peps/trunk/pep-0345.txt

tarek.ziade python-checkins at python.org
Tue Dec 29 23:16:50 CET 2009


Author: tarek.ziade
Date: Tue Dec 29 23:16:50 2009
New Revision: 77123

Log:
fixed the folding/unfolding story for the Description field

Modified:
   peps/trunk/pep-0345.txt

Modified: peps/trunk/pep-0345.txt
==============================================================================
--- peps/trunk/pep-0345.txt	(original)
+++ peps/trunk/pep-0345.txt	Tue Dec 29 23:16:50 2009
@@ -127,7 +127,7 @@
 the markup they use.
 
 To support empty lines and lines with indentation with respect to
-the RFC 822 format, any new line has to be suffixed by 7 spaces
+the RFC 822 format, any CRLF character has to be suffixed by 7 spaces
 followed by a pipe ("|") char. As a result, the Description field is
 encoded into a folded field that can be interpreted by RFC822
 parser [2]_.
@@ -143,8 +143,9 @@
             |    3
             |
 
-This encoding implies that any occurences of "``\n |``" have to be replaced
-by "``\n``" when the field is unfolded using a RFC822 reader.
+This encoding implies that any occurences of a CRLF followed by 7 spaces
+and a pipe char have to be replaced by a single CRLF when the field is unfolded
+using a RFC822 reader.
 
 
 Keywords (optional)


More information about the Python-checkins mailing list