Re: Tkinter on Python 2.4 on Mac OS X?

2006-09-13 Thread Bill Williams
2.4 on a Mac? > The Hello World example works for me. You have to save as applet, though. Can anybody recommend some examples showing how to get the 'text' module to work? There is a lot of information in http://www.pythonware.com/library/tkinter/introduction/index.htm bu

Re: Tkinter on Python 2.4 on Mac OS X?

2006-09-15 Thread Bill Williams
Tkinter conflict with the IDE graphics environment, so you can't run them under the IDE, and saving as applets was the easiest way to get stuff to run standalone. Cheers, Bill Williams -- http://mail.python.org/mailman/listinfo/python-list

Re: Best way to handle large lists?

2006-10-03 Thread Bill Williams
I don't know enough about Python internals, but the suggested solutions all seem to involve scanning bigList. Can this presumably linear operation be avoided by using dict or similar to find all occurrences of smallist items in biglist and then deleting those occurrences? Bill Williams