Re: Does py2app improves speed?

2011-11-28 Thread Alan Meyer
On 11/24/2011 9:27 AM, Dave Angel wrote: ... Several ways to speed up code. 1) use language features to best advantage 2) use 3rd party libraries that do certain things well 3) use best algorithms, subject to #1 and #2 4) have someone else review the code (perhaps on the list, perhaps within

Re: Does py2app improves speed?

2011-11-28 Thread Dave Angel
On 11/28/2011 03:03 PM, Alan Meyer wrote: On 11/24/2011 9:27 AM, Dave Angel wrote: ... Several ways to speed up code. 1) use language features to best advantage 2) use 3rd party libraries that do certain things well 3) use best algorithms, subject to #1 and #2 4) have someone else review the

Re: Does py2app improves speed?

2011-11-24 Thread Ian Kelly
On Wed, Nov 23, 2011 at 11:36 PM, Ricardo Mansilla rick.mansi...@gmail.com wrote: Hi everyone.. My question is exactly as in the subject of This Mail. I have made a Python  script which is to slow and i have heard (and common sense also suggest) that if you use some libraries to frozen the

Re: Does py2app improves speed?

2011-11-24 Thread Ricardo Mansilla
Well, that's sad... I think Im gonna end getting back to C++ for This. But anyway, thanks a lot for the quick answer... Bye. -- http://mail.python.org/mailman/listinfo/python-list

Re: Does py2app improves speed?

2011-11-24 Thread Dave Angel
On 11/24/2011 08:26 AM, Ricardo Mansilla wrote: Well, that's sad... I think Im gonna end getting back to C++ for This. But anyway, thanks a lot for the quick answer... Bye. Just because Py2app doesn't improve speed doesn't mean there aren't other ways to gain speed, while still using the

Re: Does py2app improves speed?

2011-11-24 Thread Ricardo Mansilla
Most of méthods for improving the speed are related to efficient memory management and using specific structures for a specific tasks... But i have already optimized my code (which is very short actually) following all these rules and it is very slow yet. Do you think there is another way to

Re: Does py2app improves speed?

2011-11-24 Thread Matt Joiner
Yes. Try posting your code. On Fri, Nov 25, 2011 at 1:02 AM, Ricardo Mansilla rick.mansi...@gmail.com wrote: Most of méthods for improving the speed are related to efficient memory management and using specific structures for a specific tasks... But i have already optimized my code (which is

Re: Does py2app improves speed?

2011-11-24 Thread Dave Angel
On 11/24/2011 09:02 AM, Ricardo Mansilla wrote: Most of méthods for improving the speed are related to efficient memory management and using specific structures for a specific tasks... But i have already optimized my code (which is very short actually) following all these rules and it is very

Re: Does py2app improves speed?

2011-11-24 Thread Dominic Binks
On 11/23/2011 10:36 PM, Ricardo Mansilla wrote: Hi everyone.. My question is exactly as in the subject of This Mail. I have made a Python script which is to slow and i have heard (and common sense also suggest) that if you use some libraries to frozen the script the performance improves

Does py2app improves speed?

2011-11-23 Thread Ricardo Mansilla
Hi everyone.. My question is exactly as in the subject of This Mail. I have made a Python script which is to slow and i have heard (and common sense also suggest) that if you use some libraries to frozen the script the performance improves substantially. So I need to know; is This a myth or it