I've notice every time I put an:
import pdb; pdb.set_trace()
in My Spanish Django project, if I have a specific Unicode character in a string like:
Gracias por tu colaboración
I get a UnicodeDecodeError with an 'ordinal not in range(128)' in a Django Debug window. The problem is that I can not debug my application easily. On the other hand If I use ipdb I get things like:
ERROR - failed to write data to stream: <open file '<stdout>', mode 'w' at 0x7f3d43e34140>
I've googled to find a solution, but it looks like I'm the only one having this issue :)