Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Jul 7, 2024
1 parent 35de5fe commit 0382f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypyc/lib-rt/list_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ PyObject *CPyList_Extend(PyObject *o1, PyObject *o2) {
if (res == -1) {
return NULL;
}
return o1;
return Py_None;
}

// Return -2 or error, -1 if not found, or index of first match otherwise.
Expand Down

0 comments on commit 0382f86

Please sign in to comment.