diff options
author | Fred Drake <fdrake@acm.org> | 2002-07-08 14:29:05 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-07-08 14:29:05 (GMT) |
commit | 50e1286c00c4ca2c3187173527bbb07acd8aae2b (patch) | |
tree | 3bdd8ee7c80794c1de37681e3e536c5c88d29323 | |
parent | 82bac5952f43e3012ddd124565e4cd9f271fb3c5 (diff) | |
download | cpython-50e1286c00c4ca2c3187173527bbb07acd8aae2b.zip cpython-50e1286c00c4ca2c3187173527bbb07acd8aae2b.tar.gz cpython-50e1286c00c4ca2c3187173527bbb07acd8aae2b.tar.bz2 |
Fix typo: "an Unicode string" --> "a Unicode string"
Clarify the return value when the parameter is a Unicode object.
-rw-r--r-- | Doc/lib/libfuncs.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 793e472..f695c3d 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -871,8 +871,8 @@ def my_import(name): If no optional parameters are given, \code{unicode()} will mimic the behaviour of \code{str()} except that it returns Unicode strings - instead of 8-bit strings. More precisely, if \var{object} is an - Unicode string or subclass it will return a Unicode string without + instead of 8-bit strings. More precisely, if \var{object} is a + Unicode string or subclass it will return that Unicode string without any additional decoding applied. For objects which provide a \method{__unicode__()} method, it will |