[Python-checkins] cpython (merge 3.2 -> 3.2): merge

raymond.hettinger python-checkins at python.org
Sat Jun 25 11:53:05 CEST 2011


http://hg.python.org/cpython/rev/96ce58d2d6bd
changeset:   70957:96ce58d2d6bd
branch:      3.2
parent:      70951:eaaa073a9a42
parent:      70953:23f9cfa1f597
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Jun 25 11:50:00 2011 +0200
summary:
  merge

files:
  Doc/library/collections.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -821,10 +821,10 @@
 
           >>> d = OrderedDict.fromkeys('abcde')
           >>> d.move_to_end('b')
-          >>> ''.join(d.keys)
+          >>> ''.join(d.keys())
           'acdeb'
           >>> d.move_to_end('b', last=False)
-          >>> ''.join(d.keys)
+          >>> ''.join(d.keys())
           'bacde'
 
       .. versionadded:: 3.2

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list