diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-13 08:08:32 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-13 08:08:32 (GMT) |
commit | 2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b (patch) | |
tree | d8a9071bf08aaa05504465dc1cf77f852637c040 /Doc/library/doctest.rst | |
parent | b2f9e3bd5bcea5e0f10db61b6ad873844fdacded (diff) | |
download | cpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.zip cpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.tar.gz cpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.tar.bz2 |
Merged revisions 74762 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74762 | ezio.melotti | 2009-09-13 07:48:45 +0300 (Sun, 13 Sep 2009) | 1 line
more list()s on dictviews
........
Diffstat (limited to 'Doc/library/doctest.rst')
-rw-r--r-- | Doc/library/doctest.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index 2d0f48a..2aa3ae1 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -701,8 +701,7 @@ is vulnerable! One workaround is to do :: instead. Another is to do :: - >>> d = foo().items() - >>> d.sort() + >>> d = sorted(foo().items()) >>> d [('Harry', 'broomstick'), ('Hermione', 'hippogryph')] |