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 Zero
Recipients Zero
Date 2014-04-30.19:22:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398885763.19.0.937315925175.issue21402@psf.upfronthosting.co.za>
In-reply-to
Content
If a call is made to tkinter.NoDefaultRoot, then calls to tkinter.ttk._val_or_dict may fail. NoDefaultRoot ends with "del _default_root" (line 174) and removes the variable from the module's namespace. _val_or_dict can try to access this variable but assumes that it exists (line 319). If _default_root does not exist, the function will raise an AttributeError: 'module' object has no attribute '_default_root'.
History
Date User Action Args
2014-04-30 19:22:43Zerosetrecipients: + Zero
2014-04-30 19:22:43Zerosetmessageid: <1398885763.19.0.937315925175.issue21402@psf.upfronthosting.co.za>
2014-04-30 19:22:43Zerolinkissue21402 messages
2014-04-30 19:22:42Zerocreate