summaryrefslogtreecommitdiffstats
path: root/Lib/poplib.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-12 02:00:42 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-02-12 02:00:42 (GMT)
commitc62c81e013fbc9a726493870c3624b60ae63a757 (patch)
tree877ed808aa0af2b40e4f4385f1d8d28c1019fb05 /Lib/poplib.py
parent81b6ae7ef71c2701a75773674e96829415e1a1d8 (diff)
downloadcpython-c62c81e013fbc9a726493870c3624b60ae63a757.zip
cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.gz
cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.bz2
__all__ for several more modules
Diffstat (limited to 'Lib/poplib.py')
-rw-r--r--Lib/poplib.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py
index c67cbc6..fb24a0f 100644
--- a/Lib/poplib.py
+++ b/Lib/poplib.py
@@ -14,6 +14,8 @@ Based on the J. Myers POP3 draft, Jan. 96
import re, socket
+__all__ = ["POP3","error_proto"]
+
# Exception raised when an error or invalid response is received:
class error_proto(Exception): pass