summaryrefslogtreecommitdiffstats
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index f6e746e..dddea05 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -68,6 +68,7 @@ import socket
import collections
import datetime
import sys
+import warnings
try:
import ssl
@@ -85,6 +86,8 @@ __all__ = ["NNTP",
"decode_header",
]
+warnings._deprecated(__name__, remove=(3, 13))
+
# maximal line length when calling readline(). This is to prevent
# reading arbitrary length lines. RFC 3977 limits NNTP line length to
# 512 characters, including CRLF. We have selected 2048 just to be on