vote up 2 vote down star
2

I'm using the following list comprehension:

resources = [obj.get("file") for obj in iterator if obj.get("file") != None]

Is there a way to "cache" the value of obj.get("file") when it's checked in the if statement so that it doesn't have to call get again on obj when it generates the return list?

flag

4 Answers

vote up 5 vote down check

If you want to stay with list / iterator comprehensions instead of using filter you can simply use:

resources = [file_obj
             for file_obj in (obj.get("file") for obj in iterator)
             if file_obj is not None]
link|flag
Thanks, this is the general solution that I was looking for. – Kai Jun 9 at 20:45
vote up 7 vote down
resources = filter(None, (obj.get("file") for obj in iterator))

See the documentation for filter for how to provide your own evaluation function. Passing None for the function (as above) filters out all values which aren't true.

If obj.get() returns an object which has a weird __nonzero__ method then you'd need to pass lambda obj: obj != None to get exactly the same result as your original code.

link|flag
vote up 1 vote down

Try something like this:

resources = filter( lambda x: x is not None, [obj.get("file") for ob jin iterator])
link|flag
You don't need the lambda function in your filter. By passing None it defaults to the identity function (so any object that evaluates to false will be filtered out). docs.python.org/library/functions.html#filter/… – tgray Jun 9 at 19:05
On second thought, you might want the lambda if you have other "False" elements in your iterable (i.e. 0). – tgray Jun 9 at 19:07
Hmm. even if i don't need it, I like the explicitness of the lambda. – TokenMacGuy Jun 9 at 19:23
vote up 1 vote down

Create a temporary dict to hold values. Then, create a function that uses this dict as a cache, and use that function in the list comprehension, like so:

obj_cache = {}

def cache_get (target, key):
    if (target, key) not in obj_cache: obj_cache[(target, key)] = target.get(key)
    return obj_cache[(target, key)]

resources = [cache_get(obj, "file") for obj in iterator if cache_get(obj, "file") != None]

Also, you probably already know this (and if so, please disregard this answer), but unless obj.get("file") is making a database call, opening a file, making a request over a network, or doing something else potentially expensive, calling it twice per iteration instead of once is probably harmless, since you're only adding O(n) to your cost.

link|flag

Your Answer

Get an OpenID
or

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