Como posso analisar vários URLs no feedparser (Python)?

Estou fazendo um pequeno webapp com alguns feeds fixos (fixo como em, você não pode adicionar feeds como no Feedly ou no Google Reader)

Eu tentei isso, sem sorte

RSS_URLS = [
    'http://feeds.feedburner.com/RockPaperShotgun',
    'http://www.gameinformer.com/b/MainFeed.aspx?Tags=preview',
    ]

feed = feedparser.parse(RSS_URLS)

for post in feed.entries:
    print post.title

E isso, sem sorte

RSS_URLS = [
    'http://feeds.feedburner.com/RockPaperShotgun',
    'http://www.gameinformer.com/b/MainFeed.aspx?Tags=preview',
    ]

feed = []
for url in RSS_URLS:
    feed.append(feedparser.parse(url))

for post in feed.entries:
    print post.title

questionAnswers(1)

yourAnswerToTheQuestion