summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-03-18 06:44:11 (GMT)
committerGitHub <noreply@github.com>2019-03-18 06:44:11 (GMT)
commit6a16b18224fa98f6d192aa5014affeccc0376eb3 (patch)
treed42d5fb270ce1a0e77235b9d5841fe2daa64b4e6 /Doc
parent6fb544d8bc994ceb96b0fc5059c65fa82997743e (diff)
downloadcpython-6a16b18224fa98f6d192aa5014affeccc0376eb3.zip
cpython-6a16b18224fa98f6d192aa5014affeccc0376eb3.tar.gz
cpython-6a16b18224fa98f6d192aa5014affeccc0376eb3.tar.bz2
bpo-36297: remove "unicode_internal" codec (GH-12342)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/codecs.rst14
-rw-r--r--Doc/whatsnew/3.8.rst3
2 files changed, 7 insertions, 10 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
index 7cfec63..d2a0c8b 100644
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -1316,16 +1316,10 @@ encodings.
| | | code actually uses UTF-8 |
| | | by default. |
+--------------------+---------+---------------------------+
-| unicode_internal | | Return the internal |
-| | | representation of the |
-| | | operand. Stateful codecs |
-| | | are not supported. |
-| | | |
-| | | .. deprecated:: 3.3 |
-| | | This representation is |
-| | | obsoleted by |
-| | | :pep:`393`. |
-+--------------------+---------+---------------------------+
+
+.. versionchanged:: 3.8
+ "unicode_internal" codec is removed.
+
.. _binary-transforms:
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index eaa3f5b..31baccd 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -573,6 +573,9 @@ The following features and APIs have been removed from Python 3.8:
* Removed the ``doctype()`` method of :class:`~xml.etree.ElementTree.XMLParser`.
(Contributed by Serhiy Storchaka in :issue:`29209`.)
+* "unicode_internal" codec is removed.
+ (Contributed by Inada Naoki in :issue:`36297`.)
+
Porting to Python 3.8
=====================