11 May
2001
11 May
'01
1:24 p.m.
Chris Withers wrote:
Chris McDonough wrote:
Untested...
return map(lambda x, data=self.data, self=self: data[x].__of__(self), ids)
ah, I see :-)
Would that be faster than my little function?
Probably not appreciably... unless it is, of course. ;-) It depends how many things you're iterating over. Might even be slower... it'd require testing and its probably not worth it. - C