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, ncoghlan, serhiy.storchaka, yselivanov
Date 2014-11-25.17:43:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416937414.1.0.392756021892.issue20204@psf.upfronthosting.co.za>
In-reply-to
Content
The problem not in pydoc or inspect itself. In Python 3.3 _tkinter.TkappType has the __module__ attribute:

>>> import _tkinter
>>> _tkinter.TkappType.__module__
'builtins'

Something was changed in 3.4 and builtin classes without dot in qualified name no longer have the __module__ attribute.
History
Date User Action Args
2014-11-25 17:43:34serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, eric.snow, yselivanov
2014-11-25 17:43:34serhiy.storchakasetmessageid: <1416937414.1.0.392756021892.issue20204@psf.upfronthosting.co.za>
2014-11-25 17:43:34serhiy.storchakalinkissue20204 messages
2014-11-25 17:43:33serhiy.storchakacreate