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 isandler
Recipients isandler
Date 2008-02-10.15:55:38
SpamBayes Score 0.038513225
Marked as misclassified No
Message-id <1202658940.12.0.289973757596.issue2059@psf.upfronthosting.co.za>
In-reply-to
Content
Given that Tix imports all names from Tkinter this is likely to result
in confusion.

E.g.

>>> from Tix import *
>>> print Button
Tkinter.Button
>>> print OptionMenu
Tix.OptionMenu

To get to Tkinter's OptionMenu, one needs to do something like

import Tkinter
Tkinter.OptionMenu
History
Date User Action Args
2008-02-10 15:55:40isandlersetspambayes_score: 0.0385132 -> 0.038513225
recipients: + isandler
2008-02-10 15:55:40isandlersetspambayes_score: 0.0385132 -> 0.0385132
messageid: <1202658940.12.0.289973757596.issue2059@psf.upfronthosting.co.za>
2008-02-10 15:55:38isandlerlinkissue2059 messages
2008-02-10 15:55:38isandlercreate