Changeset 391 for python/trunk/Doc/library/rfc822.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/rfc822.rst
r2 r391 11 11 The :mod:`email` package should be used in preference to the :mod:`rfc822` 12 12 module. This module is present only to maintain backward compatibility, and 13 has been removed in 3.0.13 has been removed in Python 3. 14 14 15 15 This module defines a class, :class:`Message`, which represents an "email … … 43 43 44 44 The optional *seekable* argument is provided as a workaround for certain stdio 45 libraries in which :c func:`tell` discards buffered data before discovering that46 the :c func:`lseek` system call doesn't work. For maximum portability, you45 libraries in which :c:func:`tell` discards buffered data before discovering that 46 the :c:func:`lseek` system call doesn't work. For maximum portability, you 47 47 should set the seekable argument to zero to prevent that initial :meth:`tell` 48 48 when passing in an unseekable object such as a file object created from a socket
Note:
See TracChangeset
for help on using the changeset viewer.