summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-17 02:17:03 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-17 02:17:03 (GMT)
commit50dd1f7dd68ed2f526adfebd5caa342e26da4517 (patch)
tree675aa1607bb0e537ef86793c9d9735f177486817 /Misc/NEWS
parent06172e7bd4e19ab002069998e315cd32139f475b (diff)
downloadcpython-50dd1f7dd68ed2f526adfebd5caa342e26da4517.zip
cpython-50dd1f7dd68ed2f526adfebd5caa342e26da4517.tar.gz
cpython-50dd1f7dd68ed2f526adfebd5caa342e26da4517.tar.bz2
Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8
Patch by Anthony Sottile.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ec6626f..94d8255 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,9 @@ Core and Builtins
Library
-------
+- Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8. Patch by
+ Anthony Sottile.
+
- Issue #26735: Fix :func:`os.urandom` on Solaris 11.3 and newer when reading
more than 1,024 bytes: call ``getrandom()`` multiple times with a limit of
1024 bytes per call.