Skip to content

Commit

Permalink
Merge pull request #186 from pycompression/python313
Browse files Browse the repository at this point in the history
Test on latest python 3.13
  • Loading branch information
rhpvorderman authored Jan 24, 2024
2 parents 94fa4ca + 694059a commit 970c141
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13-dev"
- "pypy-3.9"
- "pypy-3.10"
os: ["ubuntu-latest"]
Expand Down
2 changes: 1 addition & 1 deletion src/isal/isal_zlibmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2017,7 +2017,7 @@ GzipReader_readall(GzipReader *self, PyObject *Py_UNUSED(ignore))
Py_DECREF(chunk_list);
return NULL;
}
PyObject *ret = _PyBytes_Join(empty_bytes, chunk_list);
PyObject *ret = PyObject_CallMethod(empty_bytes, "join", "O", chunk_list);
Py_DECREF(empty_bytes);
Py_DECREF(chunk_list);
return ret;
Expand Down

0 comments on commit 970c141

Please sign in to comment.