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 chris.jerdonek
Recipients chris.jerdonek, ezio.melotti, mark.dickinson, serhiy.storchaka
Date 2012-11-23.20:02:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353700977.31.0.225941082844.issue16543@psf.upfronthosting.co.za>
In-reply-to
Content
> TypeError: f() missing 1 required positional argument: 'a'

Yes, I think this should also be changed because passing "a" as a keyword argument is okay:

>>> f(a=1)

I would suggest something like--

TypeError: f() missing argument for parameter 'a'
History
Date User Action Args
2012-11-23 20:02:57chris.jerdoneksetrecipients: + chris.jerdonek, mark.dickinson, ezio.melotti, serhiy.storchaka
2012-11-23 20:02:57chris.jerdoneksetmessageid: <1353700977.31.0.225941082844.issue16543@psf.upfronthosting.co.za>
2012-11-23 20:02:57chris.jerdoneklinkissue16543 messages
2012-11-23 20:02:57chris.jerdonekcreate