show/hide this revision's text 2 added 22 characters in body

You might try this:

filter(lambda x: installWow(x, 'installed by me') and Falseor False, wowList)

That way, the return result is an empty list no matter what.

Or you could just drop all or part of the and False or False if you can force installWow() to always return Falseanyway (or 0 or None or another expression that evaluates false).

show/hide this revision's text 1

You might try this:

filter(lambda x: installWow(x, 'installed by me') and False or False, wowList)

That way, the return result is an empty list no matter what.

Or you could just drop all or part of the and False or False if you can force installWow() to always return False anyway.