From fa0123b4faf0000620bee6464a58001d066bd2d7 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 22 May 2009 09:33:25 +0000 Subject: [PATCH] #6084: fix example. --- Doc/library/functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 9eaffab0d25..e47b392885a 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1413,7 +1413,7 @@ available. They are listed here in alphabetical order. >>> zipped [(1, 4), (2, 5), (3, 6)] >>> x2, y2 = zip(*zipped) - >>> x == x2, y == y2 + >>> x == list(x2) and y == list(y2) True .. versionadded:: 2.0