diff options
Diffstat (limited to 'Lib/poplib.py')
-rw-r--r-- | Lib/poplib.py | 2 |
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 |