]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix description of the input range of unichr()
authorFred Drake <fdrake@acm.org>
Wed, 25 May 2005 05:42:51 +0000 (05:42 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 25 May 2005 05:42:51 +0000 (05:42 +0000)
(closes SF bug #1120777)

Doc/lib/libfuncs.tex

index 3d185dbbc12bf17ba6d2009b20adb19a0ab99568..c624cc828e571c4bae3728325608db976ecdcb36 100644 (file)
@@ -1039,7 +1039,8 @@ It's a function
   Return the Unicode string of one character whose Unicode code is the
   integer \var{i}.  For example, \code{unichr(97)} returns the string
   \code{u'a'}.  This is the inverse of \function{ord()} for Unicode
-  strings.  The argument must be in the range [0..65535], inclusive.
+  strings.  The valid range for the argument depends how Python was
+  configured -- it may be either UCS2 [0..0xFFFF] or UCS4 [0..0x10FFFF].
   \exception{ValueError} is raised otherwise.
   \versionadded{2.0}
 \end{funcdesc}