This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients chris.jerdonek, ezio.melotti, mark.dickinson
Date 2012-11-21.16:06:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353513983.59.0.811591443088.issue16515@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2012-11-21 16:06:23ezio.melottisetrecipients: + ezio.melotti, mark.dickinson, chris.jerdonek
2012-11-21 16:06:23ezio.melottisetmessageid: <1353513983.59.0.811591443088.issue16515@psf.upfronthosting.co.za>
2012-11-21 16:06:23ezio.melottilinkissue16515 messages
2012-11-21 16:06:23ezio.melotticreate