Re: Race condition when generating .pyc files

2008-10-08 Thread [EMAIL PROTECTED]
Ugggh, I'm not using the exact same version everywhere. Of course, the mystery to me is that this just started failing recently, everything has been fine until last week. Anyway, thanks for the info. -- http://mail.python.org/mailman/listinfo/python-list

Re: Race condition when generating .pyc files

2008-10-08 Thread [EMAIL PROTECTED]
I think this is my best option for now - I'm going to give it a shot. Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Race condition when generating .pyc files

2008-10-07 Thread Steve Holden
[EMAIL PROTECTED] wrote: > I have a large body of Python code which runs on many different (Unix) > machines concurrently. Part of the code lives in one place, but most > of it lives in directories which I find at runtime. I only have one > copy of each Python source file and I think I'm hitting

Re: Race condition when generating .pyc files

2008-10-07 Thread Gabriel Genellina
En Tue, 07 Oct 2008 12:21:40 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: I have a large body of Python code which runs on many different (Unix) machines concurrently. Part of the code lives in one place, but most of it lives in directories which I find at runtime. I only have one

Re: Race condition when generating .pyc files

2008-10-07 Thread Terry Reedy
[EMAIL PROTECTED] wrote: If you package your apps using setup, pyc should be automatically generated. Don't know if it can apply to your problem. But surely I'd go this way (ie : automating pyc creation one way or another). Yeah, I don't package up my code, it's all integrated into my build sys

Re: Race condition when generating .pyc files

2008-10-07 Thread [EMAIL PROTECTED]
> If you package your apps using setup, pyc should be automatically > generated. Don't know if it can apply to your problem. But surely I'd go > this way (ie : automating pyc creation one way or another). Yeah, I don't package up my code, it's all integrated into my build system, not an actual del

Re: Race condition when generating .pyc files

2008-10-07 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : I have a large body of Python code which runs on many different (Unix) machines concurrently. Part of the code lives in one place, but most of it lives in directories which I find at runtime. I only have one copy of each Python source file and I think I'm hitting a r

Re: Race condition when generating .pyc files

2008-10-07 Thread Aaron "Castironpi" Brady
On Oct 7, 10:21 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have a large body of Python code which runs on many different (Unix) > machines concurrently.  Part of the code lives in one place, but most > of it lives in directories which I find at runtime.  I only have one > copy of each P

Re: Race condition when generating .pyc files

2008-10-07 Thread Gerhard Häring
[EMAIL PROTECTED] wrote: I have a large body of Python code which runs on many different (Unix) machines concurrently. Part of the code lives in one place, but most of it lives in directories which I find at runtime. I only have one copy of each Python source file and I think I'm hitting a race

Race condition when generating .pyc files

2008-10-07 Thread [EMAIL PROTECTED]
I have a large body of Python code which runs on many different (Unix) machines concurrently. Part of the code lives in one place, but most of it lives in directories which I find at runtime. I only have one copy of each Python source file and I think I'm hitting a race condition where two hosts