commit | fa0123b4faf0000620bee6464a58001d066bd2d7 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri May 22 09:33:25 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Fri May 22 09:33:25 2009 +0000 |
tree | 8d9cfa9d8a0b6ebb845f5919df5079b25ef58fa2 | |
parent | 5a8d7eb7f1a8b9cff09004a4234d8488c6bcd318 [diff] [blame] |
#6084: fix example.
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 9eaffab..e47b392 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst
@@ -1413,7 +1413,7 @@ >>> 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