diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-06 02:29:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-06 02:29:30 (GMT) |
commit | da8a6dd07252fd8dae279f6858a31e177342db05 (patch) | |
tree | 7d96f37bb41a1017ad16f06d18b7d7f34a07f550 /Doc/lib | |
parent | 3014ce94ba5015e7a311857b7226d0215ed530d3 (diff) | |
download | cpython-da8a6dd07252fd8dae279f6858a31e177342db05.zip cpython-da8a6dd07252fd8dae279f6858a31e177342db05.tar.gz cpython-da8a6dd07252fd8dae279f6858a31e177342db05.tar.bz2 |
Added missing version annotation for dict().
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index e0d1a63..a2407d7 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -201,6 +201,8 @@ def my_import(name): \item \code{dict([[2, 3], [1, 2]])} \item \code{dict([(i-1, i) for i in (2, 3)])} \end{itemize} + + \versionadded{2.2} \end{funcdesc} \begin{funcdesc}{dir}{\optional{object}} |