File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ Changelog
9
9
10
10
version 0.4.0-dev
11
11
-----------------
12
+ + The internal ``gzip_ng._GzipReader `` has been rewritten in C. As a result the
13
+ overhead of decompressing files has significantly been reduced.
14
+ + The ``gzip_ng._GzipReader `` in C is now used in ``gzip_ng.decompress ``. The
15
+ ``_GzipReader `` also can read from objects that support the buffer protocol.
16
+ This has reduced overhead significantly.
12
17
+ Fix some unclosed buffer errors in the gzip_ng CLI.
13
18
14
19
version 0.3.0
Original file line number Diff line number Diff line change @@ -2007,6 +2007,7 @@ static void GzipReader_dealloc(GzipReader *self)
2007
2007
}
2008
2008
Py_XDECREF (self -> fp );
2009
2009
PyThread_free_lock (self -> lock );
2010
+ zng_inflateEnd (& self -> zst );
2010
2011
Py_TYPE (self )-> tp_free (self );
2011
2012
}
2012
2013
You can’t perform that action at this time.
0 commit comments