summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Osipov <michael.osipov@siemens.com>2019-09-11 13:08:41 (GMT)
committerJason R. Coombs <jaraco@jaraco.com>2019-09-11 13:08:41 (GMT)
commita828514cc3715ebbc700fefa41c0ef044cbd6741 (patch)
treecea6a70e6f9b7ef29caf3717265ff4e80fd553c5
parent9aee90018a5213e3529768e0b873955d23f5e50b (diff)
downloadcpython-a828514cc3715ebbc700fefa41c0ef044cbd6741.zip
cpython-a828514cc3715ebbc700fefa41c0ef044cbd6741.tar.gz
cpython-a828514cc3715ebbc700fefa41c0ef044cbd6741.tar.bz2
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.
-rw-r--r--Lib/encodings/aliases.py2
-rw-r--r--Misc/NEWS.d/next/Library/2018-08-27-15-44-50.bpo-34519.cPlH1h.rst1
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/encodings/aliases.py b/Lib/encodings/aliases.py
index 8b621ad..d85afd6 100644
--- a/Lib/encodings/aliases.py
+++ b/Lib/encodings/aliases.py
@@ -266,6 +266,8 @@ aliases = {
'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 0000000..e17e2dc
--- /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.