[issue16543] Use "positional arguments" in PyArg_UnpackTuple

Chris Jerdonek report at bugs.python.org
Fri Nov 23 21:02:57 CET 2012


Chris Jerdonek added the comment:

> 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'

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16543>
_______________________________________


More information about the Python-bugs-list mailing list