def DecodeURIComponent(uri):
while True:
dec = urllib2.unquote(uri)
if dec == uri:
break
uri = dec
return uri.decode('utf8')
####################################################################################################
评论列表
文章目录