[Python-checkins] r66964 - python/trunk/Doc/library/heapq.rst
georg.brandl
python-checkins at python.org
Fri Oct 17 23:41:49 CEST 2008
Author: georg.brandl
Date: Fri Oct 17 23:41:49 2008
New Revision: 66964
Log:
Fix duplicate word.
Modified:
python/trunk/Doc/library/heapq.rst
Modified: python/trunk/Doc/library/heapq.rst
==============================================================================
--- python/trunk/Doc/library/heapq.rst (original)
+++ python/trunk/Doc/library/heapq.rst Fri Oct 17 23:41:49 2008
@@ -95,7 +95,7 @@
Merge multiple sorted inputs into a single sorted output (for example, merge
timestamped entries from multiple log files). Returns an :term:`iterator`
- over over the sorted values.
+ over the sorted values.
Similar to ``sorted(itertools.chain(*iterables))`` but returns an iterable, does
not pull the data into memory all at once, and assumes that each of the input
More information about the Python-checkins
mailing list