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

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


http://hg.python.org/cpython/rev/ce6c2ef8c5c5
changeset:   70955:ce6c2ef8c5c5
parent:      70952:ea43a99d7536
parent:      70954:2db99429beb4
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Jun 25 11:48:54 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
@@ -900,10 +900,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