Changes between Version 86 and Version 87 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
01/15/14 16:08:23 (11 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v86 v87  
    2121 * If a specific inner-loop routine cannot be optimised in Python, then consider writing a C routine for this use case.
    2222 ''You can't beat C with Python, unless it's about readability.''
     23 * Don't use subprocess if you can avoid it:
     24  * https://us.pycon.org/2014/schedule/presentation/190/
    2325=== !JavaScript ===
    2426!JavaScript string concatenation: