Update skeletons for min function to fit updated type processing of positional and keyword arguments

This commit is contained in:
Semyon Proshev
2016-11-29 14:41:28 +03:00
parent 4e8b052d74
commit c60419eb7e
4 changed files with 12 additions and 2 deletions

View File

@@ -213,7 +213,7 @@ def min(*args, key=None, default=None):
"""Return the smallest item in an iterable or the smallest of two or more
arguments.
:type args: tuple[T]
:type args: T
:rtype: T
"""
pass

View File

@@ -225,7 +225,7 @@ def min(*args, key=None, default=None):
"""Return the smallest item in an iterable or the smallest of two or more
arguments.
:type args: tuple[T]
:type args: T
:rtype: T
"""
pass