diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-26 23:43:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-26 23:43:48 (GMT) |
commit | 7592d0513e7fcc196a0469d0d50384eb4b8836aa (patch) | |
tree | cfb2d8600bb34693d5ab8ed29a2f78ef51cfbc89 /Doc | |
parent | 2f3ca9f20efad37aad479d557c282e08481602d0 (diff) | |
download | cpython-7592d0513e7fcc196a0469d0d50384eb4b8836aa.zip cpython-7592d0513e7fcc196a0469d0d50384eb4b8836aa.tar.gz cpython-7592d0513e7fcc196a0469d0d50384eb4b8836aa.tar.bz2 |
Fix the issue number of my cp65001 commit: 13247 => issue #13216
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 1ee9c1b..bfc5ed6 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -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). |