[Python-checkins] r76337 - in python/trunk: Lib/encodings/aliases.py Misc/NEWS

philip.jenvey python-checkins at python.org
Tue Nov 17 03:42:26 CET 2009


Author: philip.jenvey
Date: Tue Nov 17 03:42:26 2009
New Revision: 76337

Log:
#1757126: fix typo with the cyrillic_asian alias


Modified:
   python/trunk/Lib/encodings/aliases.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/encodings/aliases.py
==============================================================================
--- python/trunk/Lib/encodings/aliases.py	(original)
+++ python/trunk/Lib/encodings/aliases.py	Tue Nov 17 03:42:26 2009
@@ -442,7 +442,7 @@
     'csptcp154'          : 'ptcp154',
     'pt154'              : 'ptcp154',
     'cp154'              : 'ptcp154',
-    'cyrillic-asian'     : 'ptcp154',
+    'cyrillic_asian'     : 'ptcp154',
 
     # quopri_codec codec
     'quopri'             : 'quopri_codec',

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Nov 17 03:42:26 2009
@@ -12,6 +12,8 @@
 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
   newlines and is no longer required to end in a newline.
 


More information about the Python-checkins mailing list