summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-10 00:13:16 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-10 00:13:16 (GMT)
commit98a6738dca4027800291ddeb1f314bc3fec391de (patch)
treeb7daa646f75fc744a29d473b18436673b65e47df
parentf20cfb2081cb95560028996333948b2d7604e637 (diff)
downloadcpython-98a6738dca4027800291ddeb1f314bc3fec391de.zip
cpython-98a6738dca4027800291ddeb1f314bc3fec391de.tar.gz
cpython-98a6738dca4027800291ddeb1f314bc3fec391de.tar.bz2
whatsnew: cp1125 codec (#19668).
-rw-r--r--Doc/whatsnew/3.4.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index d079b3c..d26cee6 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -367,8 +367,11 @@ Some smaller changes made to the core Python language are:
Contributed by Victor Stinner, Kang-Hao (Kenny) Lu and Serhiy Storchaka in
:issue:`12892`.
-* New EBCDIC :ref:`codec <standard-encodings>` ``cp273``. (Contributed by
- Michael Bierenfeld and Andrew Kuchling in :issue:`1097797`.)
+* New German EBCDIC :ref:`codec <standard-encodings>` ``cp273``. (Contributed
+ by Michael Bierenfeld and Andrew Kuchling in :issue:`1097797`.)
+
+* New Ukrainian :ref:`codec <standard-encodings>` ``cp1125``. (Contributed by
+ Serhiy Storchaka in :issue:`19668`.)
* :class:`bytes`.join() and :class:`bytearray`.join() now accept arbitrary
buffer objects as arguments. (Contributed by Antoine Pitrou in