File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ that PyPy is no longer supported.
31
31
faster.
32
32
+ igzip.decompress has 30% less overhead when called.
33
33
+ ``isal_zlib `` functions now raise ``isal_zlib.error `` on error.
34
- ``isal_zlib.IsalError `` has been removed.
35
34
+ The base class for ``isal_zlib.error `` and ``igzip_lib.IsalError `` is now
36
35
``Exception `` instead of ``OSError ``.
37
36
+ GzipReader now uses larger input and output buffers (128k) by default and
Original file line number Diff line number Diff line change @@ -1190,6 +1190,11 @@ PyInit_isal_zlib(void)
1190
1190
return NULL ;
1191
1191
}
1192
1192
1193
+ Py_INCREF (IsalError );
1194
+ if (PyModule_AddObject (m , "IsalError" , IsalError ) < 0 ) {
1195
+ return NULL ;
1196
+ }
1197
+
1193
1198
PyTypeObject * Comptype = (PyTypeObject * )& IsalZlibCompType ;
1194
1199
if (PyType_Ready (Comptype ) != 0 ) {
1195
1200
return NULL ;
You can’t perform that action at this time.
0 commit comments