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 ronLongo
Recipients ronLongo
Date 2008-09-26.00:52:30
SpamBayes Score 5.2083866e-09
Marked as misclassified No
Message-id <1222390352.08.0.770035062007.issue3970@psf.upfronthosting.co.za>
In-reply-to
Content
The following code works in Python 2.5 but not in Python 2.6:  I've 
tested on Windows XP and Windows Vista.

from Tix import *
root = Tk()
t = Tree( root )

In Python 2.6 the following exception is thrown while trying to execute 
the last statement above:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python26\lib\lib-tk\Tix.py", line 1519, in __init__
    ['options'], cnf, kw)
  File "C:\Python26\lib\lib-tk\Tix.py", line 307, in __init__
    self.tk.call(widgetName, self._w, *extra)
_tkinter.TclError: unknown color name "{#c3c3c3}"
History
Date User Action Args
2008-09-26 00:52:32ronLongosetrecipients: + ronLongo
2008-09-26 00:52:32ronLongosetmessageid: <1222390352.08.0.770035062007.issue3970@psf.upfronthosting.co.za>
2008-09-26 00:52:31ronLongolinkissue3970 messages
2008-09-26 00:52:30ronLongocreate