Think of it this way:
An iterator is just a fancy sounding term for an object that has a next() method. So a yield-ed function ends up being something like this:
Original version:
def some_function():
for i in xrange(4):
yield i
for i in some_function():
print i
This is basically what the python interpreter does with the above code:
class it:
def __init__(self):
self.count = -1 #start at -1 so that we get 0 when we add 1 below
def next(self): #the next method will be called implicitly by the for loop
self.count += 1
if self.count < 4:
return self.count
else:
#a StopIteration exception is raised to signal that the iterator is done. This is caught implicitly by the for loop
raise StopIteration
def some_func():
return it()
for i in some_func():
print i
For more insight as to what's happening behind the scenes, the for loop can be rewritten to this:
iterator = some_func()
try:
while 1:
print iterator.next()
except StopIteration:
pass
Does that make more sense or just confuse you more? :)
EDIT: I should note that this IS an oversimplification for illustrative purposes. :)
EDIT 2: Forgot to throw the StopIteration exception
