Re: run runs away

2005-11-29 Thread Nx
Thanks for your reply ! I now realize , that the run() used in this code stems from a def , which actually wraps os.spawnv(os.P_WAIT, ...) in a way that eliminates waiting I like this newsgroup as there are always people who are less stumped than oneself. Nx -- http://mail.python.org

run runs away

2005-11-29 Thread Nx
ollowing only to run after # running of python2.4 has finished self.textBrowser1.reload f = open(self.DBMETA,'r') for self.getline in f.readlines(): self.textBrowser1.append(self.getline) f.close() Thanks for any hints how to do that. Nx -- http://mail.python.org/mailman/listinfo/python-list

Re: Installation question

2005-09-08 Thread Nx
Thanks anyway I wished there was a sure step by step approach to get it to work but I can't think of any good solution and I do not want to reinstall a well optimized system if something goes astray. Nx -- http://mail.python.org/mailman/listinfo/python-list

Installation question

2005-09-06 Thread Nx
installation. Thanks Nx -- http://mail.python.org/mailman/listinfo/python-list

Re: variable hell

2005-08-25 Thread Nx
Thanks for all the responses and animated discussion, which is still the best way to learn something new. Most of the time it is not that you want to do something in a certain way , it rather is one cannot think of a better , faster more efficient way . Nx -- http://mail.python.org/mailman

Re: variable hell

2005-08-25 Thread Nx
ead into a list was the best way to massage them into the form required to be used as input values for the insert statement. Nx -- http://mail.python.org/mailman/listinfo/python-list

Re: variable hell

2005-08-25 Thread Nx
"Could not convert data to an integer." except: print "Unexpected error:", sys.exc_info()[0] raise I am sure there is an easier way, but I have not found it yet. Nx -- http://mail.python.org/mailman/listinfo/python-list

variable hell

2005-08-25 Thread Nx
index == 1 : a1 = str(value) print "a1 : ",a1 Thanks Nx -- http://mail.python.org/mailman/listinfo/python-list

Re: Need better way to unpack a list

2005-08-17 Thread Nx
elf, "lineEdit%d" % (index + 1)).setText(self.tr(value)) Nx -- http://mail.python.org/mailman/listinfo/python-list

Need better way to unpack a list

2005-08-17 Thread Nx
t[c]) . . . if c==25: self.line25.setText(mylinelist[c]) I rather have someting like pseudo code follows: self.line+"c"+.setText(mylinelist[c]) How to do that ? Nx -- http://mail.python.org/mailman/listinfo/python-list

Python 32 and Python 64 bit

2005-08-09 Thread Nx
  all needs to be 32 bit). How do I call python 2.4 from within python 2.3 and load my variables with the data from the python 2.4 run ? Nx -- http://mail.python.org/mailman/listinfo/python-list