Commit 3035d239 authored by Raymond Hettinger's avatar Raymond Hettinger

Docstring nit.

parent f8267df2
...@@ -311,7 +311,7 @@ except ImportError: ...@@ -311,7 +311,7 @@ except ImportError:
def merge(*iterables): def merge(*iterables):
'''Merge multiple sorted inputs into a single sorted output. '''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 does not pull the data into memory all at once, and assumes that each of
the input streams is already sorted (smallest to largest). the input streams is already sorted (smallest to largest).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment