[Python-checkins] bpo-34519: Add additional aliases for HP Roman 8 (GH-8956)

Jason R. Coombs webhook-mailer at python.org
Wed Sep 11 09:08:45 EDT 2019


https://github.com/python/cpython/commit/a828514cc3715ebbc700fefa41c0ef044cbd6741
commit: a828514cc3715ebbc700fefa41c0ef044cbd6741
branch: master
author: Michael Osipov <michael.osipov at siemens.com>
committer: Jason R. Coombs <jaraco at jaraco.com>
date: 2019-09-11T14:08:41+01:00
summary:

bpo-34519: Add additional aliases for HP Roman 8 (GH-8956)

* bpo-34519: Add additional aliases for HP Roman 8

HP Roman 8 is known under mode aliases than listed in aliases.py.

Patch by Michael Osipov.

files:
A Misc/NEWS.d/next/Library/2018-08-27-15-44-50.bpo-34519.cPlH1h.rst
M Lib/encodings/aliases.py

diff --git a/Lib/encodings/aliases.py b/Lib/encodings/aliases.py
index 8b621add1b1b..d85afd6d5cf7 100644
--- a/Lib/encodings/aliases.py
+++ b/Lib/encodings/aliases.py
@@ -266,6 +266,8 @@
     'roman8'             : 'hp_roman8',
     'r8'                 : 'hp_roman8',
     'csHPRoman8'         : 'hp_roman8',
+    'cp1051'             : 'hp_roman8',
+    'ibm1051'            : 'hp_roman8',
 
     # hz codec
     'hzgb'               : 'hz',
diff --git a/Misc/NEWS.d/next/Library/2018-08-27-15-44-50.bpo-34519.cPlH1h.rst b/Misc/NEWS.d/next/Library/2018-08-27-15-44-50.bpo-34519.cPlH1h.rst
new file mode 100644
index 000000000000..e17e2dc0fdcc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-08-27-15-44-50.bpo-34519.cPlH1h.rst
@@ -0,0 +1 @@
+Add additional aliases for HP Roman 8. Patch by Michael Osipov.



More information about the Python-checkins mailing list