From: da-woods Date: Thu, 26 Dec 2024 14:40:48 +0000 (+0000) Subject: Clean up redundant ifdef in list getitem (#128257) X-Git-Tag: v3.14.0a4~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42f7a00ae8b6b3fa09115e24b9512216c6c8978e;p=thirdparty%2FPython%2Fcpython.git Clean up redundant ifdef in list getitem (#128257) It's already inside a `Py_GIL_DISABLED` block so the `#else` clause is always unused. --- diff --git a/Objects/listobject.c b/Objects/listobject.c index a877bad66be4..bbd53e7de94a 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -335,11 +335,7 @@ list_item_impl(PyListObject *self, Py_ssize_t idx) if (!valid_index(idx, size)) { goto exit; } -#ifdef Py_GIL_DISABLED item = _Py_NewRefWithLock(self->ob_item[idx]); -#else - item = Py_NewRef(self->ob_item[idx]); -#endif exit: Py_END_CRITICAL_SECTION(); return item;