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 benjamin.peterson
Recipients benjamin.peterson, eric.araujo, ezio.melotti, gpolo, madan.ram, r.david.murray
Date 2013-11-27.15:15:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385565337.6.0.46820800385.issue19810@psf.upfronthosting.co.za>
In-reply-to
Content
While we don't print the whole signature, this is much improved in 3.3:

>>> def foo(a,b=4,c="hello"): pass
>>> foo()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: foo() missing 1 required positional argument: 'a'
History
Date User Action Args
2013-11-27 15:15:37benjamin.petersonsetrecipients: + benjamin.peterson, gpolo, ezio.melotti, eric.araujo, r.david.murray, madan.ram
2013-11-27 15:15:37benjamin.petersonsetmessageid: <1385565337.6.0.46820800385.issue19810@psf.upfronthosting.co.za>
2013-11-27 15:15:37benjamin.petersonlinkissue19810 messages
2013-11-27 15:15:37benjamin.petersoncreate