Opened 17 years ago
Closed 17 years ago
#4852 closed (invalid)
UnicodeBranch: force_unicode lost POST data if will set DEFAULT_CHARSET != 'utf-8'
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Core (Other) | Version: | unicode |
Severity: | Keywords: | unicodebranch | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
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'))
Note:
See TracTickets
for help on using tickets.
This was already fixed on trunk in [5644]. Note that if you are still using the unicode branch checkout, you should switch to using trunk. The branch code will no longer be updated, since it has now been merged into trunk.