removing xmlcharrefreplace error handler as it seems that it wasn't such a good idea at the end

This commit is contained in:
Miroslav Stampar 2011-05-15 21:43:38 +00:00
parent c3bb5a03e1
commit 90e84c9a6d
2 changed files with 3 additions and 3 deletions

View File

@ -1798,7 +1798,7 @@ def getUnicode(value, encoding=None, system=False):
if isinstance(value, unicode):
return value
elif isinstance(value, basestring):
return unicode(value, encoding or UNICODE_ENCODING, errors="xmlcharrefreplace")
return unicode(value, encoding or UNICODE_ENCODING, errors="replace")
else:
return unicode(value) # encoding ignored for non-basestring instances
else:

View File

@ -85,7 +85,7 @@ def urldecode(value, encoding=None):
result = urllib.unquote_plus(value)
if isinstance(result, str):
result = unicode(result, encoding or UNICODE_ENCODING, errors="xmlcharrefreplace")
result = unicode(result, encoding or UNICODE_ENCODING, errors="replace")
return result
@ -137,7 +137,7 @@ def unicodeencode(value, encoding=None):
try:
retVal = value.encode(encoding or UNICODE_ENCODING)
except UnicodeEncodeError:
retVal = value.encode(UNICODE_ENCODING, "xmlcharrefreplace")
retVal = value.encode(UNICODE_ENCODING, "replace")
return retVal
def utf8encode(value):