Details
Description
e = foo.GetEnumerator()
first, second = e
third, fourth = e
for item in e:
print item, "is the fifth element"
break
sixth, = e
e = foo.GetEnumerator()
first, second = e
third, fourth = e
for item in e:
print item, "is the fifth element"
break
sixth, = e