mirror of https://github.com/python/cpython
gh-118849: Fix "code will never be executed" warning in `dictobject.c` (#118850)
This commit is contained in:
parent
8af84b503d
commit
82abe75e77
|
@ -5396,6 +5396,7 @@ static int
|
||||||
dictiter_iternext_threadsafe(PyDictObject *d, PyObject *self,
|
dictiter_iternext_threadsafe(PyDictObject *d, PyObject *self,
|
||||||
PyObject **out_key, PyObject **out_value)
|
PyObject **out_key, PyObject **out_value)
|
||||||
{
|
{
|
||||||
|
int res;
|
||||||
dictiterobject *di = (dictiterobject *)self;
|
dictiterobject *di = (dictiterobject *)self;
|
||||||
Py_ssize_t i;
|
Py_ssize_t i;
|
||||||
PyDictKeysObject *k;
|
PyDictKeysObject *k;
|
||||||
|
@ -5491,7 +5492,6 @@ fail:
|
||||||
Py_DECREF(d);
|
Py_DECREF(d);
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
int res;
|
|
||||||
try_locked:
|
try_locked:
|
||||||
Py_BEGIN_CRITICAL_SECTION(d);
|
Py_BEGIN_CRITICAL_SECTION(d);
|
||||||
res = dictiter_iternextitem_lock_held(d, self, out_key, out_value);
|
res = dictiter_iternextitem_lock_held(d, self, out_key, out_value);
|
||||||
|
|
Loading…
Reference in New Issue