Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
On Sun, 11 May 2008 19:55:31 +, Duncan Booth wrote: > 7stud <[EMAIL PROTECTED]> wrote: > > >>                             tempfileName = "\"proctemp\\" >>                             + >> self.matrix[c][0] + "_other.txt\"" > > It wouldn't exactly result in either of the error messages you p

Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
[CUT] > I have in no way assumed that you are stupid. I have tried to help you > formulate your problem better so that people on the list can help you. > I believe I have done so respectfully, with the aim of introducing you > to the modus operandi of this group. I appreciate your help. However

Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
> ...and the exact error message was? > > Here is a tip: if you want people to help you, then you have to help > them to help you. Personally, I wouldn't respond to anymore of your > questions because you seem incapable of posting the information that was > requested. So far, the people who have

Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
> It's difficult to know what's wrong with the code you posted because: > > * it is not self-contained: otherFile, fileName, pattern are names > which you do not define; > > * the IOError you reported earlier can't arise as a result of running > this code. > > * you claim it works unless you

Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
On Sun, 11 May 2008 10:51:34 -0700, Gary Herron wrote: > bc90021 wrote: >> Hi All, >> >> Thanks in advance for any and all help! >> >> I have this code: >> >> g = open(fileName, 'a') >> >> > I don't bel

Re: File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
On Sun, 11 May 2008 18:36:25 +0100, Arnaud Delobelle wrote: > bc90021 <[EMAIL PROTECTED]> writes: > >> Hi All, >> >> Thanks in advance for any and all help! >> >> I have this code: >> >> g = open(fileName, 'a') >> >> wh

File Creation Not Working In A Thread Class?

2008-05-11 Thread bc90021
Hi All, Thanks in advance for any and all help! I have this code: g = open(fileName, 'a') where fileName is defined before the line it's used in. It works fine when I use it outside a thread class. When I put the same line in a thread class, it no longer works, and I get an error: IOError: