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.18:02:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353520953.68.0.39471187733.issue16515@psf.upfronthosting.co.za>
In-reply-to
Content
PyArg_UnpackTuple could be fixed to say "positional argument" (see attached patch (maybe this should be a separate issue)).
The error returned by max() is wrong because PyArg_UnpackTuple is used on the *args alone first, and it has no knowledge of the kwargs.
If PyArg_UnpackTuple is used to parse the *args then adding "positional" should solve the problem, however for this specific case the error would still be incorrect, because max also accepts more positional args.
History
Date User Action Args
2012-11-21 18:02:33ezio.melottisetrecipients: + ezio.melotti, mark.dickinson, chris.jerdonek
2012-11-21 18:02:33ezio.melottisetmessageid: <1353520953.68.0.39471187733.issue16515@psf.upfronthosting.co.za>
2012-11-21 18:02:33ezio.melottilinkissue16515 messages
2012-11-21 18:02:33ezio.melotticreate