]> granicus.if.org Git - python/commitdiff
Merged revisions 76337 via svnmerge from
authorPhilip Jenvey <pjenvey@underboss.org>
Tue, 17 Nov 2009 03:43:14 +0000 (03:43 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Tue, 17 Nov 2009 03:43:14 +0000 (03:43 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76337 | philip.jenvey | 2009-11-16 18:42:26 -0800 (Mon, 16 Nov 2009) | 2 lines

  #1757126: fix typo with the cyrillic_asian alias
........

Lib/encodings/aliases.py
Misc/NEWS

index 4c35588c88c25452d242728b9f4b165ccbcb0724..dcdca30b3aa16064dec1129e0e606253290d2be8 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 42d1d46e4027e5fb05c9dafffdd3e2ad478bb0b9..96b9f7d8e9462479a8de5061b69e5e3cb4036509 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1?
 Core and Builtins
 -----------------
 
+- Issue #1757126: Fix the cyrillic-asian alias for the ptcp154 encoding.
+
 - Issue #6970: Remove redundant calls when comparing objects that don't
   implement the relevant rich comparison methods.