Running this code:
import feedparserFeed = feedparser.parse('http://www.reddit.com/r/python/.rss')pointer = Feed.entries[1]print (pointer.summary)print (pointer.link)
I get this error:
AttributeError: partially initialized module 'feedparser' has no attribute '__version__' (most likely due to a circular import)
I'm using Idle on a Mac, but I get the same error running in Terminal.