For some reason, the Python-2.7 timeit function crashes in the following example:
a,b = 0,0
timeit a=b # ok: 10000000 loops, best of 3: 50.9 ns per loop
timeit if a==a+b: pass # ok: 1000000 loops, best of 3: 129 ns per loop
timeit a=a+b # crashes!
Traceback (most recent call last):
UnboundLocalError: local variable 'a' referenced before assignment
Apparently, I can assign to a (first example), I can compare a to a+b (2nd example), so why can't I run the 3rd example ?!?! Of course, the statement being timed is, by itself, perfectly sound ...

timeit? – Roman Bodnarchuk Dec 20 '12 at 14:31timeitis a function, not a statement. – Tim Pietzcker Dec 20 '12 at 14:37timeitanda=a+bare valid, so why isn't the combination? – Rolf Bartstra Dec 20 '12 at 14:38