I just saw Alex Martelli demonstrate this tonight. I didn't catch his explanation for why there's such a large discrepancy in speed here, and I'm still really curious:
% python -mtimeit -s'def f(): pass' 'f()'
10000000 loops, best of 3: 0.121 usec per loop
% python -mtimeit -s'def f(): pass' 'f'
10000000 loops, best of 3: 0.0265 usec per loop
So why does f run so much faster than f()? Admittedly, the example's a bit contrived because I don't know if it generalizes to all possible functions that take no arguments. What's going on under the hood here?