diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2020-07-16 06:38:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 06:38:58 (GMT) |
commit | d4d127f1c6e586036104e4101f5af239fe7dc156 (patch) | |
tree | 5ab142f50edab83e0b68026d98091a1a7c4770ce | |
parent | e34bbfd61f405eef89e8aa50672b0b25022de320 (diff) | |
download | cpython-d4d127f1c6e586036104e4101f5af239fe7dc156.zip cpython-d4d127f1c6e586036104e4101f5af239fe7dc156.tar.gz cpython-d4d127f1c6e586036104e4101f5af239fe7dc156.tar.bz2 |
bpo-31844: Move whatsnew note to 3.10.rst (GH-21504)
-rw-r--r-- | Doc/whatsnew/3.10.rst | 6 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index a3b53ba..0296c8a 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 18cc558..db380bc 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 ===================== |