diff options
author | Georg Brandl <georg@python.org> | 2013-04-06 14:47:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-06 14:47:34 (GMT) |
commit | 98297f4807eea84f0d671cad6ce5c96bc9f3d9cb (patch) | |
tree | 608b410fb83662c82cb3d21ffc2e03f7800248e1 /Doc/howto | |
parent | 0aaaa62200d0bae0b79e578234ab74741da4dad3 (diff) | |
parent | bf561020a7af9a72079be2ab3d848e3ee13e92f1 (diff) | |
download | cpython-98297f4807eea84f0d671cad6ce5c96bc9f3d9cb.zip cpython-98297f4807eea84f0d671cad6ce5c96bc9f3d9cb.tar.gz cpython-98297f4807eea84f0d671cad6ce5c96bc9f3d9cb.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index efd8c1c..6ea9a3f 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1631,7 +1631,7 @@ UTF-8, then you need to do the following: 'ASCII section\ufeffUnicode section' - The Unicode code point ``'\ufeff'``, when encoded using UTF-8, will be + The Unicode code point U+FEFF, when encoded using UTF-8, will be encoded as a UTF-8 BOM -- the byte-string ``b'\xef\xbb\xbf'``. #. Replace the ASCII section with whatever placeholders you like, but make sure |