Having an iterator object, is there something faster, better or more correct than a list comprehension to get a list of the objects returned by the iterator?
I would think not. If you need to get faster than that you probably shouldn't be using python – FalmarriSep 24 '10 at 20:46
Before optimizing this, be sure you've done some profiling to prove that this really is the bottleneck. – S.LottSep 24 '10 at 20:52
@S.Lott. I normally agree with that attitude but, in this case, it very much should be optimized stylistically which, as is so often the case with Python, will optimize it for speed as well. – aaronasterlingSep 24 '10 at 21:10
"optimized stylistically"? – S.LottSep 27 '10 at 14:48