summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-18 17:37:02 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-18 17:37:02 (GMT)
commit3813c9efb7dd26d146e47e0e2691f4264627bd3a (patch)
treeb29ba6d806cf606dce4607751fa7b176609f8166
parent7c66319edcbeb3d1590e1c2397efea3171623be2 (diff)
downloadcpython-3813c9efb7dd26d146e47e0e2691f4264627bd3a.zip
cpython-3813c9efb7dd26d146e47e0e2691f4264627bd3a.tar.gz
cpython-3813c9efb7dd26d146e47e0e2691f4264627bd3a.tar.bz2
The poplib module provides two classes, not one.
-rw-r--r--Doc/library/poplib.rst2
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])