diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-18 17:37:24 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-18 17:37:24 (GMT) |
commit | 946eb459306d545a9975810021a75d7775358034 (patch) | |
tree | 35da1106781e458626b7d302a12e362ef24853f7 | |
parent | f7c709d62d09ef91b335ac7c262f0079713846a1 (diff) | |
parent | 3813c9efb7dd26d146e47e0e2691f4264627bd3a (diff) | |
download | cpython-946eb459306d545a9975810021a75d7775358034.zip cpython-946eb459306d545a9975810021a75d7775358034.tar.gz cpython-946eb459306d545a9975810021a75d7775358034.tar.bz2 |
The poplib module provides two classes, not one.
-rw-r--r-- | Doc/library/poplib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/poplib.rst b/Doc/library/poplib.rst index d11d937..01f680e 100644 --- a/Doc/library/poplib.rst +++ b/Doc/library/poplib.rst @@ -24,7 +24,7 @@ quality of POP3 servers varies widely, and too many are quite poor. If your mailserver supports IMAP, you would be better off using the :class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented. -A single class is provided by the :mod:`poplib` module: +The :mod:`poplib` module provides two classes: .. class:: POP3(host, port=POP3_PORT[, timeout]) |