diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2011-01-22 13:13:05 (GMT) |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2011-01-22 13:13:05 (GMT) |
commit | 8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4 (patch) | |
tree | 85053ad58fdc9fd916611a6d3b9cc4942feeeb23 /Misc | |
parent | 137e0f0a2218479232405a4e826074148f735666 (diff) | |
download | cpython-8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4.zip cpython-8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4.tar.gz cpython-8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4.tar.bz2 |
Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.
This makes the implementation of PEP 3333 compliant servers on top of
BaseHTTPServer possible.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ Library - Issue #10898: Allow compiling the posix module when the C library defines a symbol named FSTAT. +- Issue #10980: the HTTP server now encodes headers with iso-8859-1 (latin1) + encoding. This is the preferred encoding of PEP 3333 and the base encoding + of HTTP 1.1. + What's New in Python 3.2 Release Candidate 1 ============================================ |