summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/codecs.rst4
-rw-r--r--Doc/whatsnew/3.4.rst3
2 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
index 843de27..3729dac 100644
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -971,6 +971,10 @@ particular, the following variants typically exist:
+-----------------+--------------------------------+--------------------------------+
| cp037 | IBM037, IBM039 | English |
+-----------------+--------------------------------+--------------------------------+
+| cp273 | 273, IBM273, csIBM273 | German |
+| | | |
+| | | .. versionadded:: 3.4 |
++-----------------+--------------------------------+--------------------------------+
| cp424 | EBCDIC-CP-HE, IBM424 | Hebrew |
+-----------------+--------------------------------+--------------------------------+
| cp437 | 437, IBM437 | English |
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index c8c47e0..1bda6fa 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -364,6 +364,9 @@ 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 Modules