[Python-checkins] bpo-31844: Move whatsnew note to 3.10.rst (GH-21504)

Berker Peksag webhook-mailer at python.org
Thu Jul 16 02:39:06 EDT 2020


https://github.com/python/cpython/commit/d4d127f1c6e586036104e4101f5af239fe7dc156
commit: d4d127f1c6e586036104e4101f5af239fe7dc156
branch: master
author: Berker Peksag <berker.peksag at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-07-16T09:38:58+03:00
summary:

bpo-31844: Move whatsnew note to 3.10.rst (GH-21504)

files:
M Doc/whatsnew/3.10.rst
M Doc/whatsnew/3.9.rst

diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index a3b53ba48e9b7..0296c8ad60b0d 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -134,6 +134,12 @@ Deprecated
 Removed
 =======
 
+* The ``ParserBase.error()`` method from the private and undocumented ``_markupbase``
+  module has been removed.  :class:`html.parser.HTMLParser` is the only subclass of
+  ``ParserBase`` and its ``error()`` implementation has already been removed in
+  Python 3.5.
+  (Contributed by Berker Peksag in :issue:`31844`.)
+
 
 Porting to Python 3.10
 ======================
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 18cc5588bf237..db380bc1cdfa4 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -887,12 +887,6 @@ Removed
   :func:`asyncio.current_task` and :func:`asyncio.all_tasks` instead.
   (Contributed by Rémi Lapeyre in :issue:`40967`)
 
-* The ``ParserBase.error()`` method from the private and undocumented ``_markupbase``
-  module has been removed.  :class:`html.parser.HTMLParser` is the only subclass of
-  ``ParserBase`` and its ``error()`` implementation has already been removed in
-  Python 3.5.
-  (Contributed by Berker Peksag in :issue:`31844`.)
-
 Porting to Python 3.9
 =====================
 



More information about the Python-checkins mailing list