diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-18 17:37:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-18 17:37:54 (GMT) |
commit | 99f57942e050d03d14f44b1755dd81478e7cddfb (patch) | |
tree | 74cc154dcaa7d29c250b1b64e0fd1d09a7ebfc87 /Doc | |
parent | 540187f719bb210a67eb9dc217fc820c552ca662 (diff) | |
parent | 946eb459306d545a9975810021a75d7775358034 (diff) | |
download | cpython-99f57942e050d03d14f44b1755dd81478e7cddfb.zip cpython-99f57942e050d03d14f44b1755dd81478e7cddfb.tar.gz cpython-99f57942e050d03d14f44b1755dd81478e7cddfb.tar.bz2 |
The poplib module provides two classes, not one.
Diffstat (limited to 'Doc')
-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]) |