From: Raymond Hettinger Date: Wed, 28 Feb 2007 18:27:41 +0000 (+0000) Subject: Docstring nit. X-Git-Tag: v2.6a1~2125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3035d2397f4a6d028d7b1f87563c649457d5cbb4;p=python Docstring nit. --- diff --git a/Lib/heapq.py b/Lib/heapq.py index 0f67236929..39e3800882 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -311,7 +311,7 @@ except ImportError: 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).