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 xonatius
Recipients adaptivelogic, eric.snow, gvanrossum, martius, ncoghlan, pitrou, rbcollins, rhettinger, vstinner, xonatius, yselivanov
Date 2015-02-07.08:23:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423297410.77.0.159135688375.issue17911@psf.upfronthosting.co.za>
In-reply-to
Content
As suggested adding patch from http://bugs.python.org/issue2786 which prints qualnames in function call exceptions.

e.g:

>>> class A:
...     def __init__(self):
...         pass
>>> A(1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: A.__init__() takes 1 positional argument but 2 were given
History
Date User Action Args
2015-02-07 08:23:30xonatiussetrecipients: + xonatius, gvanrossum, rhettinger, ncoghlan, pitrou, vstinner, rbcollins, eric.snow, yselivanov, adaptivelogic, martius
2015-02-07 08:23:30xonatiussetmessageid: <1423297410.77.0.159135688375.issue17911@psf.upfronthosting.co.za>
2015-02-07 08:23:30xonatiuslinkissue17911 messages
2015-02-07 08:23:30xonatiuscreate