Well, I'm not quite sure exactly what is being done to it, but it appears to happen at:
============================================= django/http/__init__.py: ... class QueryDict(MultiValueDict): ... def appendlist(self, key, value): self._assert_mutable() key = str_to_unicode(key, self.encoding) value = str_to_unicode(value, self.encoding) MultiValueDict.appendlist(self, key, value) <<<<<<<<<<<<<<<<<<<<<<< ============================================= Before the call to appendlist value looks reasonable, afterwards it's been converted to ...? unicode or something. That and $3.50 will get you a latte, but there it is. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---