Changes between Version 35 and Version 36 of DeveloperGuidelines/Optimisation
- Timestamp:
- 06/18/10 08:33:53 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v35 v36 34 34 NB These vary on cases, so use the Profiler to see how they work in your cases... 35 35 {{{ 36 for i in range(0, len(rows)):36 for i in xrange(0, len(rows)): 37 37 row = rows[i] 38 38 }}}