[Python-checkins] r64404 - peps/trunk/pep-0372.txt

armin.ronacher python-checkins at python.org
Thu Jun 19 13:40:36 CEST 2008


Author: armin.ronacher
Date: Thu Jun 19 13:40:35 2008
New Revision: 64404

Log:
Fixed rst syntax error in pep 372



Modified:
   peps/trunk/pep-0372.txt

Modified: peps/trunk/pep-0372.txt
==============================================================================
--- peps/trunk/pep-0372.txt	(original)
+++ peps/trunk/pep-0372.txt	Thu Jun 19 13:40:35 2008
@@ -161,7 +161,7 @@
 
 ``odict_keys.__getitem__(index)``
 
-    Returns the key for an index.  This is equivalent to ``odict.byindex(index) ``
+    Returns the key for an index.  This is equivalent to ``odict.byindex(index)``.
 
 ``odict_keys.index(key)``
 
@@ -170,11 +170,11 @@
 
 ``odict_keys.__iter__()``
 
-    Has the same semantics as ``odict.__iter__()``
+    Has the same semantics as ``odict.__iter__()``.
 
 ``odict_keys.__reversed__()``
 
-    Has the same semantics as ``odict.__reversed__()``
+    Has the same semantics as ``odict.__reversed__()``.
 
 ``odict_keys.__cmp__()`` / ``odict_keys.__eq__()`` / ``odict_keys.__ne__()``
 


More information about the Python-checkins mailing list