I noticed that Python2.6 added a next() to it\'s list of global functions.
next(iterator[, default]) Retrieve the next item from the i
next(iterator[, default])
Retrieve the next item from the i
It's just for consistency with functions like len(). I believe next(i) calls i.__next__() internally.
len()
next(i)
i.__next__()
See http://www.python.org/dev/peps/pep-3114/