]> granicus.if.org Git - python/commitdiff
unichr(),
authorFred Drake <fdrake@acm.org>
Thu, 6 Apr 2000 15:06:03 +0000 (15:06 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 6 Apr 2000 15:06:03 +0000 (15:06 +0000)
unicode():  Added \versionadded{} annotations.

Doc/lib/libfuncs.tex

index 1aedf6444c13b84bf3da2de86e6a6e72bb8cb80a..7fdb599be6bac7b8492dd0950c17f98f1faa2e50 100644 (file)
@@ -669,6 +669,7 @@ integer \var{i}, e.g., \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.
 \exception{ValueError} is raised otherwise.
+\versionadded{1.6}
 \end{funcdesc}
 
 \begin{funcdesc}{unicode}{string\optional{, encoding='utf-8'\optional{, errors='strict'}}}
@@ -676,6 +677,7 @@ Decodes \var{string} using the codec for \var{encoding}.  Error
 handling is done according to \var{errors}.  The default behavior is
 to decode UTF-8 in strict mode, meaning that encoding errors raise
 \exception{ValueError}.
+\versionadded{1.6}
 \end{funcdesc}
 
 \begin{funcdesc}{vars}{\optional{object}}