]> granicus.if.org Git - python/commitdiff
#1757126: fix typo with the cyrillic_asian alias
authorPhilip Jenvey <pjenvey@underboss.org>
Tue, 17 Nov 2009 02:42:26 +0000 (02:42 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Tue, 17 Nov 2009 02:42:26 +0000 (02:42 +0000)
Lib/encodings/aliases.py
Misc/NEWS

index c6f5aeb506ca1d72d9ccaa3cb977ceb4129813be..992eef4bcdd33e98216c87f351eb64faecd2dcd4 100644 (file)
@@ -442,7 +442,7 @@ aliases = {
     'csptcp154'          : 'ptcp154',
     'pt154'              : 'ptcp154',
     'cp154'              : 'ptcp154',
-    'cyrillic-asian'     : 'ptcp154',
+    'cyrillic_asian'     : 'ptcp154',
 
     # quopri_codec codec
     'quopri'             : 'quopri_codec',
index 041f2a77236dce22f69b578b523482c6c7367e1d..d3668183da8a94246f92fc2b4f37dd0ca674a11d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
 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.