Tix and Python 3.0
Has anyone seen anything on Tix running python 3.0? I've tried working with examples, but when building anything, it claims that cnf is not subscribed.
I also noticed that none of the Dir Select (DirList DirTree) items work under version 2.6.1.
Why doesn't Python dump Tix or support it? It has a lot of good things to do with lightweight programs.
0
MKaras
source
to share
3 answers
What probably happened is that no one noticed the error. (It is very difficult to automatically test GUI libraries like Tix and Tkinter.) You should report bugs when you find them at http://bugs.python.org
...
...
+1
Benjamin peterson
source
to share
Generally speaking, if you are using third party modules, you are better off avoiding Python 3.0. If you're working on a third-party module yourself, porting to Python 3.0 is a good idea, but for now, general development in it will just be a recipe for pain.
0
Alex coventry
source
to share
See this: http://docs.python.org/3.1/library/tkinter.tix.html?highlight=tix#module-tkinter.tix
0
Paul barry
source
to share