mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Snapshot of python-skeletons @ 658937341a
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user