This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Unicode support for HTTP headers in http.client
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.3, Python 3.4, Python 3.5
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: r.david.murray, tierney
Priority: normal Keywords: patch

Created on 2013-03-20 20:47 by tierney, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tierney.patch tierney, 2013-03-20 20:47 review
Messages (2)
msg184792 - (view) Author: Matt Tierney (tierney) Date: 2013-03-20 20:47
Changed the headers string charset to utf-8 since a header field may contain non-iso-8859-1 characters. For instance, a Location header field may contain Cyrillic characters.
msg184803 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-03-20 21:33
My understanding is that iso-8859-1 is the standard, and really means "binary".  Turning it into unicode happens later.  See the WSGI PEPs for more information.
History
Date User Action Args
2022-04-11 14:57:43adminsetgithub: 61699
2013-03-20 21:33:40r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg184803

resolution: not a bug
stage: resolved
2013-03-20 20:47:36tierneycreate