Skip to content

Commit 970c141

Browse files
authored
Merge pull request #186 from pycompression/python313
Test on latest python 3.13
2 parents 94fa4ca + 694059a commit 970c141

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
- "3.10"
6363
- "3.11"
6464
- "3.12"
65+
- "3.13-dev"
6566
- "pypy-3.9"
6667
- "pypy-3.10"
6768
os: ["ubuntu-latest"]

src/isal/isal_zlibmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2017,7 +2017,7 @@ GzipReader_readall(GzipReader *self, PyObject *Py_UNUSED(ignore))
20172017
Py_DECREF(chunk_list);
20182018
return NULL;
20192019
}
2020-
PyObject *ret = _PyBytes_Join(empty_bytes, chunk_list);
2020+
PyObject *ret = PyObject_CallMethod(empty_bytes, "join", "O", chunk_list);
20212021
Py_DECREF(empty_bytes);
20222022
Py_DECREF(chunk_list);
20232023
return ret;

0 commit comments

Comments
 (0)