Changeset 391 for python/trunk/Doc/library/email.header.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/email.header.rst
r2 r391 1 :mod:`email `: Internationalized headers2 --------------------------------------- 1 :mod:`email.header`: Internationalized headers 2 ---------------------------------------------- 3 3 4 4 .. module:: email.header … … 66 66 subsequent :meth:`append` calls. 67 67 68 The maximum line length can be specified explicit via *maxlinelen*. For68 The maximum line length can be specified explicitly via *maxlinelen*. For 69 69 splitting the first line to a shorter value (to account for the field header 70 70 which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the … … 75 75 Optional *continuation_ws* must be :rfc:`2822`\ -compliant folding whitespace, 76 76 and is usually either a space or a hard tab character. This character will be 77 prepended to continuation lines. 77 prepended to continuation lines. *continuation_ws* defaults to a single 78 space character (" "). 78 79 79 80 Optional *errors* is passed straight through to the :meth:`append` method. … … 103 104 104 105 Optional *errors* is passed through to any :func:`unicode` or 105 : func:`ustr.encode` call, and defaults to "strict".106 :meth:`unicode.encode` call, and defaults to "strict". 106 107 107 108
Note:
See TracChangeset
for help on using the changeset viewer.