Re: multiple processes with private working dirs

2008-09-25 Thread sturlamolden
On 24 Sep, 19:37, "Tim Arnold" <[EMAIL PROTECTED]> wrote: > Am I missing something? Is there a better way? Use the pyprocessing module (to appear as standard module multiprocessing in Python 2.6). It has almost the same interface as Python's threading and Queue standard modules, except you are wo

Re: multiple processes with private working dirs

2008-09-25 Thread Tim Arnold
On Sep 25, 12:11 am, alex23 <[EMAIL PROTECTED]> wrote: > On Sep 25, 3:37 am, "Tim Arnold" <[EMAIL PROTECTED]> wrote: > > > Am I missing something? > > Do you mean something other than the replies you got the last time you > asked the exact same question? > > http://groups.google.com/group/comp.lang

Re: multiple processes with private working dirs

2008-09-24 Thread alex23
On Sep 25, 3:37 am, "Tim Arnold" <[EMAIL PROTECTED]> wrote: > Am I missing something? Do you mean something other than the replies you got the last time you asked the exact same question? http://groups.google.com/group/comp.lang.python/browse_frm/thread/42c13cbb84f88f2b -- http://mail.python.org/

multiple processes with private working dirs

2008-09-24 Thread Tim Arnold
I have a bunch of processes to run and each one needs its own working directory. I'd also like to know when all of the processes are finished. (1) First thought was threads, until I saw that os.chdir was process-global. (2) Next thought was fork, but I don't know how to signal when each child is