#4852: UnicodeBranch: force_unicode lost POST data if will set DEFAULT_CHARSET
!= 'utf-8'
--------------------------------------+-------------------------------------
Reporter: Alexander <[EMAIL PROTECTED]> | Owner: adrian
Status: new | Component: Core framework
Version: unicode | Keywords: unicodebranch
Stage: Unreviewed | Has_patch: 0
--------------------------------------+-------------------------------------
{{{
django/http/__init__.py (117)
- self.appendlist(force_unicode(key, errors='replace'),
force_unicode(value, errors='replace'))
+ self.appendlist(force_unicode(key, encoding=self.encoding,
errors='replace'), force_unicode(value, encoding=self.encoding,
errors='replace'))
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/4852>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---