]> granicus.if.org Git - python/commitdiff
Issue #27959: Updates NEWS and whatsnew
authorSteve Dower <steve.dower@microsoft.com>
Wed, 7 Sep 2016 02:55:55 +0000 (19:55 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Wed, 7 Sep 2016 02:55:55 +0000 (19:55 -0700)
Doc/whatsnew/3.6.rst
Misc/NEWS

index 0517ef8376fa4dca88e9f236a68e92e0c688f333..4cf77f9e2c83416acc98bb16cb80414329f15e60 100644 (file)
@@ -450,6 +450,12 @@ Any code relying on the presence of ``default_format`` may
 need to be adapted. See :issue:`27819` for more details.
 
 
+encodings
+---------
+
+On Windows, added the ``'oem'`` encoding to use ``CP_OEMCP`` and the ``'ansi'``
+alias for the existing ``'mbcs'`` encoding, which uses the ``CP_ACP`` code page.
+
 faulthandler
 ------------
 
index f5e8aaa50f9ad7251760e6bd64f3ba335a38b724..f3b0acb14df9d07fd8e2581d094d092eac7b6bc7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,9 @@ Build
 Windows
 -------
 
+- Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to
+  codec lookup.
+
 - Issue #27982: The functions of the winsound module now accept keyword
   arguments.