#1757126: fix typo with the cyrillic_asian alias

This commit is contained in:
Philip Jenvey 2009-11-17 02:42:26 +00:00
parent 3d6790e49f
commit fab8be2f99
2 changed files with 3 additions and 1 deletions

View file

@ -442,7 +442,7 @@ aliases = {
'csptcp154' : 'ptcp154', 'csptcp154' : 'ptcp154',
'pt154' : 'ptcp154', 'pt154' : 'ptcp154',
'cp154' : 'ptcp154', 'cp154' : 'ptcp154',
'cyrillic-asian' : 'ptcp154', 'cyrillic_asian' : 'ptcp154',
# quopri_codec codec # quopri_codec codec
'quopri' : 'quopri_codec', 'quopri' : 'quopri_codec',

View file

@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #1757126: Fix the cyrillic-asian alias for the ptcp154 encoding.
- Fix several issues with compile(). The input can now contain Windows and Mac - Fix several issues with compile(). The input can now contain Windows and Mac
newlines and is no longer required to end in a newline. newlines and is no longer required to end in a newline.