Ezio Melotti added the comment:

Attached an initial patch:
>>> max()
TypeError: max() requires at least a positional argument
>>> max(foo=3)
TypeError: max() requires at least a positional argument
>>> max(3, foo=3)
TypeError: max() got an unexpected keyword argument
>>> max(3, 4)
4

----------
keywords: +patch
stage: needs patch -> patch review
Added file: http://bugs.python.org/file28064/issue16515.diff

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16515>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to