Message 186954 - Python tracker (original) (raw)

I don't understand what you're worrying about here. This is just because of evaluation order:

import itertools it = itertools.count() f = it.next f() - f() -1 f() - f() -1