Jason R. Coombs wrote:
I'm about to upload a new patch that implements some of the ideas John and
Darren have sent. Would you mind running the performance tests against that
one also?  This new change has the potential to increase performance drag.

I tested it; performance still is not a problem.

fir...@manini:~/programs/py/mpl/tests$ python startuptime.py
average pylab startup time: 0.505041065216
efir...@manini:~/programs/py/mpl/tests$ python startuptime.py
average pylab startup time: 0.508669295311

where the first number is r7480, and the second is after your patch #4.
The test script is attached.

Eric
import time
import os

N = 200

t = time.time()
for i in range(N):
    os.system('python -c "from pylab import *"')

print "average pylab startup time:", (time.time() - t) / N

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to