Snapshot of python-skeletons @ 658937341a

This commit is contained in:
Andrey Vlasovskikh
2015-02-17 19:57:05 +03:00
parent 0beff48110
commit 09bdc5fa1b
@@ -186,6 +186,15 @@ def locals():
return {}
def max(*args, key=None, default=None):
"""Return the largest item in an iterable or the largest of two or more
arguments.
:rtype: object | unknown
"""
pass
def map(function, sequence, *sequence_1):
"""Return a list of the results of applying the function to the items of
the argument sequence(s).
@@ -197,6 +206,15 @@ def map(function, sequence, *sequence_1):
pass
def min(*args, key=None, default=None):
"""Return the smallest item in an iterable or the smallest of two or more
arguments.
:rtype: object | unknown
"""
pass
def next(iterator, default=None):
"""Return the next item from the iterator.