Update version numbering from 1.6 to 2.0.

This commit is contained in:
Fred Drake 2000-06-30 16:06:19 +00:00
parent 61b49b3d6b
commit 30f76ffd00
11 changed files with 16 additions and 16 deletions

View file

@ -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}}