[Python-checkins] r54026 - python/trunk/Lib/heapq.py

raymond.hettinger python-checkins at python.org
Wed Feb 28 19:27:43 CET 2007


Author: raymond.hettinger
Date: Wed Feb 28 19:27:41 2007
New Revision: 54026

Modified:
   python/trunk/Lib/heapq.py
Log:
Docstring nit.

Modified: python/trunk/Lib/heapq.py
==============================================================================
--- python/trunk/Lib/heapq.py	(original)
+++ python/trunk/Lib/heapq.py	Wed Feb 28 19:27:41 2007
@@ -311,7 +311,7 @@
 def merge(*iterables):
     '''Merge multiple sorted inputs into a single sorted output.
 
-    Similar to sorted(itertools.chain(*iterables)) but returns an iterable,
+    Similar to sorted(itertools.chain(*iterables)) but returns a generator,
     does not pull the data into memory all at once, and assumes that each of
     the input streams is already sorted (smallest to largest).
 


More information about the Python-checkins mailing list