diff options
author | Georg Brandl <georg@python.org> | 2008-10-17 21:41:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-10-17 21:41:49 (GMT) |
commit | 92b70bcc6e469e001616fadc5f7be125a90b6c63 (patch) | |
tree | 4152a3a9359611963fa004c21e72f8ff8e62a1e7 /Doc/library | |
parent | c2f144079fd272b589c1d7d8a0830943dd582f80 (diff) | |
download | cpython-92b70bcc6e469e001616fadc5f7be125a90b6c63.zip cpython-92b70bcc6e469e001616fadc5f7be125a90b6c63.tar.gz cpython-92b70bcc6e469e001616fadc5f7be125a90b6c63.tar.bz2 |
Fix duplicate word.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/heapq.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/heapq.rst b/Doc/library/heapq.rst index d1c79b0..5cf8163 100644 --- a/Doc/library/heapq.rst +++ b/Doc/library/heapq.rst @@ -95,7 +95,7 @@ The module also offers three general purpose functions based on heaps. 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 |