Changeset 391 for python/trunk/Doc/library/poplib.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/poplib.rst
r2 r391 1 2 1 :mod:`poplib` --- POP3 protocol client 3 2 ====================================== … … 9 8 10 9 .. index:: pair: POP3; protocol 10 11 **Source code:** :source:`Lib/poplib.py` 12 13 -------------- 11 14 12 15 This module defines a class, :class:`POP3`, which encapsulates a connection to a … … 22 25 :class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented. 23 26 24 A single class is provided by the :mod:`poplib` module:27 The :mod:`poplib` module provides two classes: 25 28 26 29 … … 100 103 101 104 Send password, response includes message count and mailbox size. Note: the 102 mailbox on the server is locked until :meth:` quit` is called.105 mailbox on the server is locked until :meth:`~poplib.quit` is called. 103 106 104 107
Note:
See TracChangeset
for help on using the changeset viewer.