From: Michael Osipov Date: Wed, 11 Sep 2019 13:08:41 +0000 (+0200) Subject: bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) X-Git-Tag: v3.9.0a1~553 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a828514cc3715ebbc700fefa41c0ef044cbd6741;p=thirdparty%2FPython%2Fcpython.git 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. --- 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 @@ 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 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.