mirror of https://github.com/python/cpython
fix missing bracket
This commit is contained in:
parent
bbba3f0cec
commit
3e1c67e866
|
@ -728,7 +728,7 @@ indexes at which certain conditions are met::
|
|||
if line.strip() == '':
|
||||
print 'Blank line at line #%i' % i
|
||||
|
||||
``sorted(iterable, [cmp=None], [key=None], [reverse=False)`` collects all the
|
||||
``sorted(iterable, [cmp=None], [key=None], [reverse=False])`` collects all the
|
||||
elements of the iterable into a list, sorts the list, and returns the sorted
|
||||
result. The ``cmp``, ``key``, and ``reverse`` arguments are passed through to
|
||||
the constructed list's ``.sort()`` method. ::
|
||||
|
|
Loading…
Reference in New Issue