[Python-checkins] r67755 - python/branches/py3k/Doc/tutorial/datastructures.rst

Georg Brandl g.brandl at gmx.net
Mon Dec 15 09:11:50 CET 2008


benjamin.peterson schrieb:
> Author: benjamin.peterson
> Date: Sun Dec 14 16:09:34 2008
> New Revision: 67755
> 
> Log:
> tip-toe around dictionary keys view in the tutorial
> 
> Modified:
>    python/branches/py3k/Doc/tutorial/datastructures.rst
> 
> Modified: python/branches/py3k/Doc/tutorial/datastructures.rst
> ==============================================================================
> --- python/branches/py3k/Doc/tutorial/datastructures.rst	(original)
> +++ python/branches/py3k/Doc/tutorial/datastructures.rst	Sun Dec 14 16:09:34 2008
> @@ -440,7 +440,7 @@
>  value associated with that key is forgotten.  It is an error to extract a value
>  using a non-existent key.
>  
> -The :meth:`keys` method of a dictionary object returns a list of all the keys
> +Preforming ``list(d.keys())`` on a dictionary returns a list of all the keys

Should be "Performing".

Georg

-- 
Thus spake the Lord: Thou shalt indent with four spaces. No more, no less.
Four shall be the number of spaces thou shalt indent, and the number of thy
indenting shall be four. Eight shalt thou not indent, nor either indent thou
two, excepting that thou then proceed to four. Tabs are right out.



More information about the Python-checkins mailing list