If I
- Code: Select all
return [(u'hello', u'hello'), ...]
it gets added to the list, but if I
- Code: Select all
return [(u'?hello', u'?hello'), ...]
it overrides the whole list.
To be more precise, as soon as a special character is returned, the whole list is overwritten. Is this a bug? How can I work around it?