diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-30 16:06:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-30 16:06:19 (GMT) |
commit | 30f76ffd0074b1d1c0f9fb946f43e5da8210328c (patch) | |
tree | 204294ba9a8e819e8307b0f664803673d7d03f71 /Doc/lib/libfuncs.tex | |
parent | 61b49b3d6bbc0daa31e476268b9560f4bbc912a8 (diff) | |
download | cpython-30f76ffd0074b1d1c0f9fb946f43e5da8210328c.zip cpython-30f76ffd0074b1d1c0f9fb946f43e5da8210328c.tar.gz cpython-30f76ffd0074b1d1c0f9fb946f43e5da8210328c.tar.bz2 |
Update version numbering from 1.6 to 2.0.
Diffstat (limited to 'Doc/lib/libfuncs.tex')
-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 3e6e3cb..91afe4f 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -669,7 +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} +\versionadded{2.0} \end{funcdesc} \begin{funcdesc}{unicode}{string\optional{, encoding='utf-8'\optional{, errors='strict'}}} @@ -677,7 +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} +\versionadded{2.0} \end{funcdesc} \begin{funcdesc}{vars}{\optional{object}} |