Skip to content

Commit 9175ce5

Browse files
authored
Fix _PyList_Extend for Python 3.13 (#17503)
Replace `_PyList_Extend` with `PyList_Extend` from `pythoncapi_compat.h`. python/cpython#111138 https://docs.python.org/dev/c-api/list.html#c.PyList_Extend Fixes ```cpp /home/runner/work/mypy/mypy/mypyc/lib-rt/list_ops.c: In function ‘CPyList_Extend’: (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/list_ops.c:259:12: error: implicit declaration of function ‘_PyList_Extend’; did you mean ‘CPyList_Extend’? [-Werror=implicit-function-declaration] (diff) 259 | return _PyList_Extend((PyListObject *)o1, o2); (diff) | ^~~~~~~~~~~~~~ (diff) | CPyList_Extend (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/list_ops.c:259:12: error: returning ‘int’ from a function with return type ‘PyObject *’ {aka ‘struct _object *’} makes pointer from integer without a cast [-Werror=int-conversion] (diff) 259 | return _PyList_Extend((PyListObject *)o1, o2); (diff) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c: In function ‘CPyDict_Keys’: (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c:233:21: error: initialization of ‘PyObject *’ {aka ‘struct _object *’} from ‘int’ makes pointer from integer without a cast [-Werror=int-conversion] (diff) 233 | PyObject *res = _PyList_Extend((PyListObject *)list, view); (diff) | ^~~~~~~~~~~~~~ (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c: In function ‘CPyDict_Values’: (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c:253:21: error: initialization of ‘PyObject *’ {aka ‘struct _object *’} from ‘int’ makes pointer from integer without a cast [-Werror=int-conversion] (diff) 253 | PyObject *res = _PyList_Extend((PyListObject *)list, view); (diff) | ^~~~~~~~~~~~~~ (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c: In function ‘CPyDict_Items’: (diff) /home/runner/work/mypy/mypy/mypyc/lib-rt/dict_ops.c:273:21: error: initialization of ‘PyObject *’ {aka ‘struct _object *’} from ‘int’ makes pointer from integer without a cast [-Werror=int-conversion] (diff) 273 | PyObject *res = _PyList_Extend((PyListObject *)list, view); (diff) | ^~~~~~~~~~~~~~ (diff) ```
1 parent d4f7e5c commit 9175ce5

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

mypyc/lib-rt/dict_ops.c

+6-9
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,11 @@ PyObject *CPyDict_Keys(PyObject *dict) {
230230
if (view == NULL) {
231231
return NULL;
232232
}
233-
PyObject *res = _PyList_Extend((PyListObject *)list, view);
233+
int res = PyList_Extend(list, view);
234234
Py_DECREF(view);
235-
if (res == NULL) {
235+
if (res < 0) {
236236
return NULL;
237237
}
238-
Py_DECREF(res);
239238
return list;
240239
}
241240

@@ -250,12 +249,11 @@ PyObject *CPyDict_Values(PyObject *dict) {
250249
if (view == NULL) {
251250
return NULL;
252251
}
253-
PyObject *res = _PyList_Extend((PyListObject *)list, view);
252+
int res = PyList_Extend(list, view);
254253
Py_DECREF(view);
255-
if (res == NULL) {
254+
if (res < 0) {
256255
return NULL;
257256
}
258-
Py_DECREF(res);
259257
return list;
260258
}
261259

@@ -270,12 +268,11 @@ PyObject *CPyDict_Items(PyObject *dict) {
270268
if (view == NULL) {
271269
return NULL;
272270
}
273-
PyObject *res = _PyList_Extend((PyListObject *)list, view);
271+
int res = PyList_Extend(list, view);
274272
Py_DECREF(view);
275-
if (res == NULL) {
273+
if (res < 0) {
276274
return NULL;
277275
}
278-
Py_DECREF(res);
279276
return list;
280277
}
281278

mypyc/lib-rt/list_ops.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,10 @@ int CPyList_Insert(PyObject *list, CPyTagged index, PyObject *value)
256256
}
257257

258258
PyObject *CPyList_Extend(PyObject *o1, PyObject *o2) {
259-
return _PyList_Extend((PyListObject *)o1, o2);
259+
if (PyList_Extend(o1, o2) < 0) {
260+
return NULL;
261+
}
262+
Py_RETURN_NONE;
260263
}
261264

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

0 commit comments

Comments
 (0)