Added a version annotation for StringTypes.
Added documentation for BooleanType.
diff --git a/Doc/lib/libtypes.tex b/Doc/lib/libtypes.tex
index ac337da..adbec3b 100644
--- a/Doc/lib/libtypes.tex
+++ b/Doc/lib/libtypes.tex
@@ -35,6 +35,12 @@
\function{type()}\bifuncindex{type}).
\end{datadesc}
+\begin{datadesc}{BooleanType}
+The type of the \class{bool} values \code{True} and \code{False}; this
+is an alias of the built-in \function{bool()} function.
+\versionadded{2.3}
+\end{datadesc}
+
\begin{datadesc}{IntType}
The type of integers (e.g. \code{1}).
\end{datadesc}
@@ -165,4 +171,5 @@
elsewhere since it only contains \code{UnicodeType} if it has been
built in the running version of Python. For example:
\code{isinstance(s, types.StringTypes)}.
+\versionadded{2.2}
\end{datadesc}