On Tue, Oct 12, 2010 at 7:43 AM, Tim Hoffman <[email protected]> wrote:
> I know this is a nit, but with the python version, is there any > particular reason why you are doing > objects = list(q.Get(fetch_size)) > nfetched += len(objects) > at line 108 in test_load_query.py > the list() is redundant, the result from Get is for all purposes is a > list or at least exceedingly list like that you wouldn't bother > creating another list from it. You're right, that was unnecessary, removed. [...] > It really won't make any difference to the performance. Yes, confirmed. :-) -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
