diff options
author | Georg Brandl <georg@python.org> | 2009-05-04 21:01:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-04 21:01:20 (GMT) |
commit | 4f5f98d7d122d5d5fe17d97ac61b288abb45a5fc (patch) | |
tree | 7821235028eb161ea76d7e2f0746790113e254fc /Doc/howto | |
parent | 5f25972a0550e6754407652ab3818f6aaf11a965 (diff) | |
download | cpython-4f5f98d7d122d5d5fe17d97ac61b288abb45a5fc.zip cpython-4f5f98d7d122d5d5fe17d97ac61b288abb45a5fc.tar.gz cpython-4f5f98d7d122d5d5fe17d97ac61b288abb45a5fc.tar.bz2 |
Add missing documentation for bytes.decode().
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/unicode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 60f7d7d..c9b6720 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -234,7 +234,7 @@ The String Type Since Python 3.0, the language features a ``str`` type that contain Unicode characters, meaning any string created using ``"unicode rocks!"``, ``'unicode -rocks!``, or the triple-quoted string syntax is stored as Unicode. +rocks!'``, or the triple-quoted string syntax is stored as Unicode. To insert a Unicode character that is not part ASCII, e.g., any letters with accents, one can use escape sequences in their string literals as such:: |