Message123039
On Wed, Dec 01, 2010 at 02:56:56PM +0000, Xuanji Li wrote:
> orsenthil: Hi, i don't quite understand why iter() needs to be
> called explicitly on data? As I understand it, if data is an
> iterable then you can use a for loop on it directly.
>
The reasoning I followed was, data is an "Iterable" (a collection) and
you get an "Iterator" by passing via iter(). And you send the items by
looping over the iterator.
Honestly, I am not sure if iter is needed here too. I thought it was
not needed too, when you determine it is an Iterable and iterate over
it using the for loop. But I kept the iter() method just to create an
instance and send it.
Antoine, which would be the correct/ better? |
|
Date |
User |
Action |
Args |
2010-12-02 02:23:20 | orsenthil | set | recipients:
+ orsenthil, jhylton, georg.brandl, rhettinger, pitrou, catlee, eric.araujo, rcoyner, xuanji, davide.rizzo |
2010-12-02 02:23:19 | orsenthil | link | issue3243 messages |
2010-12-02 02:23:18 | orsenthil | create | |
|