I feel stacked here trying to change encodings with Python 2.5
I have XML response, which I encode to UTF-8: response.encode(\'utf-8\'). That is fine, but t
response.encode(\'utf-8\')
Instead of .encode('utf-8'), use .encode('latin-1').
.encode('utf-8')
.encode('latin-1')