]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix the issue number of my cp65001 commit: 13247 => issue #13216
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 26 Oct 2011 23:43:48 +0000 (01:43 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 26 Oct 2011 23:43:48 +0000 (01:43 +0200)
Doc/whatsnew/3.3.rst
Misc/NEWS

index 1ee9c1b746dedca95b499014be570f24f4901212..bfc5ed6a3c9669240678aeafc4d6c05495a47433 100644 (file)
@@ -225,7 +225,7 @@ The :mod:`~encodings.mbcs` codec has be rewritten to handle correclty
 :mod:`~encodings.mbcs` codec is now supporting all error handlers, instead of
 only ``replace`` to encode and ``ignore`` to decode.
 
-A new Windows-only codec has been added: ``cp65001`` (:issue:`13247`). It is
+A new Windows-only codec has been added: ``cp65001`` (:issue:`13216`). It is
 the Windows code page 65001 (Windows UTF-8, ``CP_UTF8``). For example, it is
 used by ``sys.stdout`` if the console output code page is set to cp65001 (e.g.
 using ``chcp 65001`` command).
index 0a7f41a3beffda3015ff8c1c5f5805ae1a63cd7c..ca82490c75fdd7f6e818e3f9d8e4bd297b919f5e 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -341,7 +341,7 @@ Core and Builtins
 Library
 -------
 
-- Issue #13247: Add cp65001 codec, the Windows UTF-8 (CP_UTF8).
+- Issue #13216: Add cp65001 codec, the Windows UTF-8 (CP_UTF8).
 
 - Issue #13226: Add RTLD_xxx constants to the os module. These constants can be
   used with sys.setdlopenflags().