Skip to content

Commit

Permalink
1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Feb 1, 2024
1 parent aa7af19 commit dc67e32
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions c_impl/blake3module.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,10 @@ static PyObject *Blake3_update_mmap(Blake3Object *self, PyObject *args,
NULL,
};
printf("JACK 1\n");
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&", kwlist,
PyUnicode_FSConverter, &path_bytes)) {
int parse_ret = !PyArg_ParseTupleAndKeywords(
args, kwds, "O&", kwlist, PyUnicode_FSConverter, &path_bytes);
printf("JACK 1.5\n");
if (!parse_ret) {
return NULL;
}

Expand Down

0 comments on commit dc67e32

Please sign in to comment.