summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-01-22 21:59:43 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2020-01-22 21:59:43 (GMT)
commit1f0f102dec506fd06f912b74dd2be64a7fba0d3f (patch)
treedfdfd1335254a0f0172995d452f1b55f726ac065 /Doc/whatsnew
parentb477d19a6b7751b0c933b239dae4fc96dbcde9c4 (diff)
downloadcpython-1f0f102dec506fd06f912b74dd2be64a7fba0d3f.zip
cpython-1f0f102dec506fd06f912b74dd2be64a7fba0d3f.tar.gz
cpython-1f0f102dec506fd06f912b74dd2be64a7fba0d3f.tar.bz2
bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index f5835d6..d9c545a 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -363,6 +363,13 @@ Deprecated
Removed
=======
+* :class:`nntplib.NNTP`: ``xpath()`` and ``xgtitle()`` methods have been removed.
+ These methods are deprecated since Python 3.3. Generally, these extensions
+ are not supported or not enabled by NNTP server administrators.
+ For ``xgtitle()``, please use :meth:`nntplib.NNTP.descriptions` or
+ :meth:`nntplib.NNTP.description` instead.
+ (Contributed by Dong-hee Na in :issue:`39366`.)
+
* :class:`array.array`: ``tostring()`` and ``fromstring()`` methods have been
removed. They were aliases to ``tobytes()`` and ``frombytes()``, deprecated
since Python 3.2.