Re: multiprocessing and dictionaries

2009-07-13 Thread Bjorn Meyer
On Monday 13 July 2009 13:12:18 Piet van Oostrum wrote: > > Bjorn Meyer (BM) wrote: > > > >BM> Here is what I have been using as a test. > >BM> This pretty much mimics what I am trying to do. > >BM> I put both threading and multiprocessing in the example which shows > >BM> the output that I

Re: multiprocessing and dictionaries

2009-07-13 Thread Piet van Oostrum
> Bjorn Meyer (BM) wrote: >BM> Here is what I have been using as a test. >BM> This pretty much mimics what I am trying to do. >BM> I put both threading and multiprocessing in the example which shows >BM> the output that I am looking for. >BM> #!/usr/bin/env python >BM> import threading >BM>

Re: multiprocessing and dictionaries

2009-07-13 Thread Bjorn Meyer
On Monday 13 July 2009 01:56:08 Piet van Oostrum wrote: > > Bjorn Meyer (BM) wrote: > > > >BM> I am trying to convert a piece of code that I am using the thread > > module with BM> to the multiprocessing module. > > > >BM> The way that I have it set up is a chunk of code reads a text file an

Re: multiprocessing and dictionaries

2009-07-13 Thread Piet van Oostrum
> Bjorn Meyer (BM) wrote: >BM> I am trying to convert a piece of code that I am using the thread module >with >BM> to the multiprocessing module. >BM> The way that I have it set up is a chunk of code reads a text file and >assigns >BM> a dictionary key multiple values from the text file.

Re: multiprocessing and dictionaries

2009-07-12 Thread Chris Rebert
On Sun, Jul 12, 2009 at 10:16 AM, Bjorn Meyer wrote: > I am trying to convert a piece of code that I am using the thread module with > to the multiprocessing module. > > The way that I have it set up is a chunk of code reads a text file and assigns > a dictionary key multiple values from the text f