mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
Docstring nit.
This commit is contained in:
parent
f8267df2ad
commit
3035d2397f
1 changed files with 1 additions and 1 deletions
|
|
@ -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).
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue