summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-01-18 22:40:46 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-01-18 22:40:46 (GMT)
commitd7664dee0c35c01e71fc0ea65d0b7547dfb0212a (patch)
treeb2e677ee3580ab47d9379de12b97603c09c3ec49 /Misc
parente09bc1e8f54620e938b7e076830b872a8daabd2c (diff)
downloadcpython-d7664dee0c35c01e71fc0ea65d0b7547dfb0212a.zip
cpython-d7664dee0c35c01e71fc0ea65d0b7547dfb0212a.tar.gz
cpython-d7664dee0c35c01e71fc0ea65d0b7547dfb0212a.tar.bz2
Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9d32b12..0233823 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,9 @@ Core and Builtins
Library
-------
+- Issue #13781: Prevent gzip.GzipFile from using the dummy filename provided by
+ file objects opened with os.fdopen().
+
- Issue #13589: Fix some serialization primitives in the aifc module.
Patch by Oleg Plakhotnyuk.