import urllib
import lxml.html
down='http://blog.sina.com.cn/s/blog_71f3890901017hof.html'
file=urllib.urlopen(down).read()
root=lxml.html.document_fromstring(file)
body=root.xpath('//div[@class="articalContent "]')[0]
print body.text_content()
コードを実行すると、テキストコンテンツが表示されますが、テキストコンテンツではなく、そのhtmlソースコードを取得するにはどうすればよいですか?