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 serhiy.storchaka
Recipients brett.cannon, eric.snow, lev.maximov, ncoghlan, serhiy.storchaka
Date 2016-06-29.13:18:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467206329.2.0.554629092717.issue26844@psf.upfronthosting.co.za>
In-reply-to
Content
__qualname__ itself is not much more informative than __name__. You should use it together with __module__ to get the full qualified name. But 1) it is never used in error messages, 2) the code becomes more verbose, 3) the output becomes more verbose, and excessive verbose for builtin types.

__name__ LGTM. It is enough to identify the error.
History
Date User Action Args
2016-06-29 13:18:49serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, eric.snow, lev.maximov
2016-06-29 13:18:49serhiy.storchakasetmessageid: <1467206329.2.0.554629092717.issue26844@psf.upfronthosting.co.za>
2016-06-29 13:18:49serhiy.storchakalinkissue26844 messages
2016-06-29 13:18:48serhiy.storchakacreate