summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-10-21 16:15:05 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-10-21 16:15:05 (GMT)
commitdd72b3f6b7a3ab497db6134411f1e37ae3f6a5ab (patch)
tree7b3e62042d0d6a7f446cc2fccc6bc25de06c4d5b /Misc
parentc30848344c69e19771321f6f89e9a8d141a91b34 (diff)
downloadcpython-dd72b3f6b7a3ab497db6134411f1e37ae3f6a5ab.zip
cpython-dd72b3f6b7a3ab497db6134411f1e37ae3f6a5ab.tar.gz
cpython-dd72b3f6b7a3ab497db6134411f1e37ae3f6a5ab.tar.bz2
Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7e91943..4fa216d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,8 @@ Core and Builtins
Library
-------
+- Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
+
- Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.