summaryrefslogtreecommitdiff
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-09-20 08:53:05 +0300
committerBerker Peksag <berker.peksag@gmail.com>2014-09-20 08:53:05 +0300
commit96756b6a2712830cdbb29f5eb125b7aef0ee187c (patch)
tree011a8f6f424a84e9d4ef2eae1e2a74ffc1985edf /Lib/nntplib.py
parentfc4ead24512430c4f55b8b68416b171350e1f986 (diff)
downloadcpython-git-96756b6a2712830cdbb29f5eb125b7aef0ee187c.tar.gz
Issue #22247: Add NNTPError to nntplib.__all__.
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index 4ded78a9e8..d33faf85b9 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -80,8 +80,8 @@ from email.header import decode_header as _email_decode_header
from socket import _GLOBAL_DEFAULT_TIMEOUT
__all__ = ["NNTP",
- "NNTPReplyError", "NNTPTemporaryError", "NNTPPermanentError",
- "NNTPProtocolError", "NNTPDataError",
+ "NNTPError", "NNTPReplyError", "NNTPTemporaryError",
+ "NNTPPermanentError", "NNTPProtocolError", "NNTPDataError",
"decode_header",
]