diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-13 07:54:02 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-13 07:54:02 (GMT) |
commit | 985e24dcf7368894f945c360c383059a21b1ba0b (patch) | |
tree | 4736769c0e526b53c8a98c3dfd213e5bf9c89bb1 /Doc/library/unicodedata.rst | |
parent | b5845056da831ee3bad9400d5fe9dcd88f9ae534 (diff) | |
download | cpython-985e24dcf7368894f945c360c383059a21b1ba0b.zip cpython-985e24dcf7368894f945c360c383059a21b1ba0b.tar.gz cpython-985e24dcf7368894f945c360c383059a21b1ba0b.tar.bz2 |
fixed more examples that were using u"", print without () and unicode/str instead of str/bytes
Diffstat (limited to 'Doc/library/unicodedata.rst')
-rw-r--r-- | Doc/library/unicodedata.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index d8428a5..2358285 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -146,7 +146,7 @@ Examples: >>> import unicodedata >>> unicodedata.lookup('LEFT CURLY BRACKET') - u'{' + '{' >>> unicodedata.name('/') 'SOLIDUS' >>> unicodedata.decimal('9') |