RE: Multiprocessing takes higher execution time

2009-01-08 Thread Sibtey Mehdi
, Gopal -Original Message- From: Nick Craig-Wood [mailto:n...@craig-wood.com] Sent: Thursday, January 08, 2009 3:01 PM To: python-list@python.org Subject: Re: Multiprocessing takes higher execution time Sibtey Mehdi wrote: > I use multiprocessing to compare more then one set of fi

RE: Multiprocessing takes higher execution time

2009-01-07 Thread Sibtey Mehdi
Hello, Please see the code I have send in attachment. Any suggestions will highly appreciate. Thanks and Regards, Gopal -Original Message- From: Grant Edwards [mailto:inva...@invalid] Sent: Wednesday, January 07, 2009 8:58 PM To: python-list@python.org Subject: Re: Multiprocessing takes

Multiprocessing takes higher execution time

2009-01-07 Thread Sibtey Mehdi
Hi, I use multiprocessing to compare more then one set of files. For comparison each set of files (i.e. Old file1 Vs New file1) I create a process, Process(target=compare, args=(oldFile, newFile)).start() It takes 61 seconds execution time. When I do the same comparison without implement

poblem regarding opening a html file

2008-12-29 Thread Sibtey Mehdi
Hi I have a GUI application (wxpython) that calls another GUI Application. I m using os.system (cmd) to launch The second GUI, in the second GUI I m trying to open the html file using the os.startfile (filename) function but It takes lots of time to open the html file. If I am run

Memory Error

2008-08-27 Thread Sibtey Mehdi
I am using the cPickle module to serialization and de-serialization of heavy python object (80 MB). When I try to save the object it gives the memory Error. Any one can help me out of this problem. I am pickling the object as: def savePklFile(pickleFile, data): pickledFile =