[Python-checkins] r73373 - python/branches/release26-maint/Doc/library/bisect.rst

raymond.hettinger python-checkins at python.org
Fri Jun 12 00:08:48 CEST 2009


Author: raymond.hettinger
Date: Fri Jun 12 00:08:48 2009
New Revision: 73373

Log:
Add example of how to do key lookups with bisect().

Modified:
   python/branches/release26-maint/Doc/library/bisect.rst

Modified: python/branches/release26-maint/Doc/library/bisect.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/bisect.rst	(original)
+++ python/branches/release26-maint/Doc/library/bisect.rst	Fri Jun 12 00:08:48 2009
@@ -94,8 +94,8 @@
 of the record in question::
 
     >>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)]
-    >>> data.sort(key=lambda r: r[1])       # precomputed list of keys
-    >>> keys = [r[1] for r in data]
+    >>> data.sort(key=lambda r: r[1])
+    >>> keys = [r[1] for r in data]         # precomputed list of keys
     >>> data[bisect_left(keys, 0)]
     ('black', 0)
     >>> data[bisect_left(keys, 1)]


More information about the Python-checkins mailing list