summaryrefslogtreecommitdiffstats
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index a8aba48..eddd31a 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -33,7 +33,10 @@ import re
import socket
import string
-
+__all__ = ["NNTP","NNTPReplyError","NNTPTemporaryError",
+ "NNTPPermanentError","NNTPProtocolError","NNTPDataError",
+ "error_reply","error_temp","error_perm","error_proto",
+ "error_data",]
# Exceptions raised when an error or invalid response is received
class NNTPError(Exception):