Tkinter

2007-09-03 Thread vijayca
i tried to use python gui module Tkinter in solaris,aix,hpux. while importing the module it shows an error... import Tkinter error says that your python may not be configured for Tk()... how to get out of this... -- http://mail.python.org/mailman/listinfo/python-list

Tkinter(2)

2007-09-04 Thread vijayca
my python installation is:Active python 2.5.1 i am using Red Hat Linux i have the Tkinter module installed but any simple script produces an error script: from Tkinter import Label widget = Label(None, text='Hello GUI world!') widget.pack() widget.mainloop() error: Traceback (most recent cal

Re: Looping through File Question

2007-09-05 Thread vijayca
On Sep 5, 3:58 pm, planetmatt <[EMAIL PROTECTED]> wrote: > I am a Python beginner. I am trying to loop through a CSV file which > I can do. What I want to change though is for the loop to start at > row 2 in the file thus excluding column headers. > > At present I am using this statement to initi

threads

2007-09-05 Thread vijayca
i have written a script that spawns some threads all run in parallel now i need to stop all the threads once i press a key(example: "\n") how to do it... -- http://mail.python.org/mailman/listinfo/python-list