From: R David Murray Date: Mon, 10 Mar 2014 00:13:16 +0000 (-0400) Subject: whatsnew: cp1125 codec (#19668). X-Git-Tag: v3.4.1rc1~233^2~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98a6738dca4027800291ddeb1f314bc3fec391de;p=thirdparty%2FPython%2Fcpython.git whatsnew: cp1125 codec (#19668). --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index d079b3c979da..d26cee64f013 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 ` ``cp273``. (Contributed by - Michael Bierenfeld and Andrew Kuchling in :issue:`1097797`.) +* New German EBCDIC :ref:`codec ` ``cp273``. (Contributed + by Michael Bierenfeld and Andrew Kuchling in :issue:`1097797`.) + +* New Ukrainian :ref:`codec ` ``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