Issue #1675951: Allow GzipFile to work with unseekable file objects.
Patch by Florian Festi.
diff --git a/Misc/ACKS b/Misc/ACKS
index 4f2780a..5d12c1f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -260,6 +260,7 @@
Mark Favas
Niels Ferguson
Sebastian Fernandez
+Florian Festi
Vincent Fiack
Tomer Filiba
Jeffrey Finkelstein
diff --git a/Misc/NEWS b/Misc/NEWS
index 15b4da2..514ea6d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,9 @@
Library
-------
+- Issue #1675951: Allow GzipFile to work with unseekable file objects.
+ Patch by Florian Festi.
+
- Logging: Added QueueListener class to facilitate logging usage for
performance-critical threads.