You know, your best solution is really to just initialize secondList how you like, and do all three functions in a regular loop, since they're all dependent and contain logic that is not just filtering (you say process sets attributes... I'm assuming you mean other than discard):
# If secondList not initialized...
secondList = []
for x in firstList:
firstFunc(x)
secondFunc(x)
process(x)
if not x.discard:
secondList.append(x)
List comprehensions don't help too much here since you're doing processing in each function (they take a line or two off though; depends on what you're looking for in "clean" code). If all process() did was return True if the item should be in the new list, and False if the item should not be in the new list, then the below would really be better, IMO.
If firstFunc(x) and secondFunc(x) do change the result of x.discard after process(), and the result of process(x) is just x, I would do the following in your situation:
for x in firstList:
firstFunc(x)
secondFunc(x)
secondList = [ x for x in firstList if not process(x).discard ]
If the result of process(x) is different from x though, as your sample appears to indicate, you could also change that last line to the following:
interimList = [ process(x) for x in firstList ]
secondList = [ x for x in interimList if not x.discard ]
Note that if you wanted to append these results to secondList, use secondList.extend([...]).
Edit: I realized I erroneously wrote "do not" change, but I meant if they do change the result of process().
Edit 2: Cleanup description / code.
firstFunc,secondFuncandprocessare of no interest for the final-list compilation. – SilentGhost Sep 10 at 16:02