git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55451 15284696-431f-4ddb-bdfa-cd5b030d7da7
@@ -281,7 +281,7 @@ class Ilist(object):
return self.c_ilist.contents.n_values
def __iter__(self):
- return [self.c_ilist.contents.value[i] for i in xrange(self.__len__())]
+ return (self.c_ilist.contents.value[i] for i in xrange(self.__len__()))
def __repr__(self):
return "Ilist(%r)" % repr(self.__iter__())