Changes between Version 86 and Version 87 of DeveloperGuidelines/Optimisation
- Timestamp:
- 01/15/14 16:08:23 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v86 v87 21 21 * If a specific inner-loop routine cannot be optimised in Python, then consider writing a C routine for this use case. 22 22 ''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/ 23 25 === !JavaScript === 24 26 !JavaScript string concatenation: