Message 235517 - Python tracker

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.

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