Changes between Version 35 and Version 36 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
06/18/10 08:33:53 (14 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v35 v36  
    3434NB These vary on cases, so use the Profiler to see how they work in your cases...
    3535{{{
    36 for i in range(0, len(rows)):
     36for i in xrange(0, len(rows)):
    3737     row = rows[i]
    3838}}}