up vote 2 down vote favorite
share [g+] share [fb]

Surely there is a better way to do this?

results = []
if not queryset is None:
    for obj in queryset:
        results.append((getattr(obj,field.attname),obj.pk))

The problem is that sometimes queryset is None which causes an exception when I try to iterate over it. In this case, I just want result to be set to an empty list. This code is from a Django view, but I don't think that matters--this seems like a more general Python question.

EDIT: I turns out that it was my code that was turning an empty queryset into a "None" instead of returning an empty list. Being able to assume that queryset is always iteratable simplifies the code by allowing the "if" statement to be removed. The answers below maybe useful to others who have the same problem, but cannot modify their code to guarantee that queryset is not "None".

link|improve this question

75% accept rate
There's nothing that can be improved about this -- as shown. If you can explain why "sometimes" queryset is None, then perhaps we can help with that. – S.Lott Jan 30 '09 at 12:05
do you have a typo in the last line? append takes one argument, and numbers of closing and open brackets do not correspond to each other. – SilentGhost Jan 30 '09 at 12:07
Yes, fixed the typo. The queryset is being set from a database search, and if there are no results, it seems to be set to None. – user27478 Jan 30 '09 at 12:12
Turns out that I can easily modify the code so that queryset returns an empty list instead of None which neatly solves the problem. :) The solutions posted here are interesting and could be useful in the future though. – user27478 Jan 30 '09 at 12:56
@gerdemb: Please update your question with what you were doing wrong in creating the queryset and post your answer with what you are now doing right. – S.Lott Jan 30 '09 at 13:31
show 1 more comment
feedback

4 Answers

up vote 19 down vote accepted
results = [(getattr(obj, field.attname), obj.pk) for obj in queryset or []]
link|improve this answer
I don't recall the operator priority exactly, but you might have to put: for obj in (queryset or []) – Gabriel Ross Jan 30 '09 at 12:50
@Gabriel: parentheses are unnecessary. Though you might add them for readability if you rarely see such code. – J.F. Sebastian Jan 30 '09 at 13:10
Wow, that's superb! – artknish Jan 30 '09 at 14:08
feedback

How about

for obj in (queryset or []):
    # Do your stuff

It is the same as J.F Sebastians suggestion, only not implemented as a list comprehension.

link|improve this answer
feedback

For what it's worth, Django managers have a "none" queryset that you can use to avoid gratuitous None-checking. Using it to ensure you don't have a null queryset may simplify your code.

if queryset is None:
    queryset = MyModel.objects.none()

References:

link|improve this answer
feedback

you can use list comprehensions, but other than that I don't see what you can improve

result = []
 if queryset:
     result = [(getattr(obj, field.attname), obj.pk) for obj in queryset]
link|improve this answer
One notice: if queryset evaluates queryset and retrieve all underlying data – Alex Koshelev Jan 30 '09 at 12:30
i'm sorry, but i don't see how my snippet is any different in this respect from the original code – SilentGhost Jan 30 '09 at 12:46
Daevaorn: it doesn't retrieve all underlying data, in boolean context it's smart enough to just do a COUNT(). – Carl Meyer Jan 31 '09 at 15:37
SilentGhost: your version is less efficient. "queryset is None" just does a Python object identity comparison, whereas "if queryset" evaluates queryset in a boolean context, which forces a SQL COUNT() query (since a queryset that returns no rows also evaluates to False). – Carl Meyer Jan 31 '09 at 15:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.