summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-08-17 22:30:30 (GMT)
committerFred Drake <fdrake@acm.org>2000-08-17 22:30:30 (GMT)
commite581bb30c4297f88005db1e9dea627d935ac0fc4 (patch)
tree4079ece04c7874ee2f67d6fc19cdb1285b15858f
parentb32aa5ecef6c241d2415f2f5b90756f139e6e282 (diff)
downloadcpython-e581bb30c4297f88005db1e9dea627d935ac0fc4.zip
cpython-e581bb30c4297f88005db1e9dea627d935ac0fc4.tar.gz
cpython-e581bb30c4297f88005db1e9dea627d935ac0fc4.tar.bz2
Small cleanups, and note when zip() entered the menagerie.
-rw-r--r--Doc/lib/libfuncs.tex4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 1a1d916..67571cf 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -168,7 +168,6 @@ class instances are callable if they have a \method{__call__()} method.
['sys']
>>> dir(sys)
['argv', 'exit', 'modules', 'path', 'stderr', 'stdin', 'stdout']
->>>
\end{verbatim}
\end{funcdesc}
@@ -515,7 +514,6 @@ one argument, return the smallest of the arguments.
[]
>>> range(1, 0)
[]
->>>
\end{verbatim}
\end{funcdesc}
@@ -530,7 +528,6 @@ one argument, return the smallest of the arguments.
--> Monty Python's Flying Circus
>>> s
"Monty Python's Flying Circus"
->>>
\end{verbatim}
If the \module{readline} module was loaded, then
@@ -712,4 +709,5 @@ The returned list is truncated in length to the length of the shortest
argument sequence. When the argument sequences are all of the same
length, \function{zip()} is similar to \function{map()} with an
initial argument of \code{None}.
+\versionadded{2.0}
\end{funcdesc}