wok view feedparser/stuff/feedparser_utf8_decoding.patch @ rev 11905

Up: slitaz-tools (4.6) - New wifibox, installer and small fixes
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 29 20:36:46 2012 +0100 (2012-02-29)
parents
children
line source
1 --- /var/lib/python-support/python2.5/feedparser.py 2008-01-23 20:10:27.000000000 +0100
2 +++ feedparser.py 2008-07-28 11:01:38.000000000 +0200
3 @@ -1455,7 +1455,7 @@
4 # thanks to Kevin Marks for this breathtaking hack to deal with (valid) high-bit attribute values in UTF-8 feeds
5 for key, value in attrs:
6 if type(value) != type(u''):
7 - value = unicode(value, self.encoding)
8 + value = unicode(value, self.encoding, errors='replace')
9 uattrs.append((unicode(key, self.encoding), value))
10 strattrs = u''.join([u' %s="%s"' % (key, value) for key, value in uattrs]).encode(self.encoding)
11 if tag in self.elements_no_end_tag: