does urllib fetch the whole page? when a urlopen call is made?
I'd like to just read the http response header without getting the page it looks like urllib opens the http connection and then subsequently gets the actual html page... or does it just start buffering the page with the url open call?
import urllib2
myurl = 'http://bit.ly/doFeT'
page = urllib2.urlopen(myurl) // open connection, get headers
html = page.readlines() // stream page