mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
just sort the items tuple directly (closes #24094)
This commit is contained in:
parent
51454a62e2
commit
501182a47b
3 changed files with 25 additions and 27 deletions
|
@ -1527,35 +1527,11 @@ encoder_listencode_dict(PyEncoderObject *s, _PyAccu *acc,
|
|||
*/
|
||||
}
|
||||
|
||||
if (PyObject_IsTrue(s->sort_keys)) {
|
||||
/* First sort the keys then replace them with (key, value) tuples. */
|
||||
Py_ssize_t i, nitems;
|
||||
items = PyMapping_Keys(dct);
|
||||
if (items == NULL)
|
||||
goto bail;
|
||||
if (!PyList_Check(items)) {
|
||||
PyErr_SetString(PyExc_ValueError, "keys must return list");
|
||||
goto bail;
|
||||
}
|
||||
if (PyList_Sort(items) < 0)
|
||||
goto bail;
|
||||
nitems = PyList_GET_SIZE(items);
|
||||
for (i = 0; i < nitems; i++) {
|
||||
PyObject *key, *value;
|
||||
key = PyList_GET_ITEM(items, i);
|
||||
value = PyDict_GetItem(dct, key);
|
||||
item = PyTuple_Pack(2, key, value);
|
||||
if (item == NULL)
|
||||
goto bail;
|
||||
PyList_SET_ITEM(items, i, item);
|
||||
Py_DECREF(key);
|
||||
}
|
||||
}
|
||||
else {
|
||||
items = PyMapping_Items(dct);
|
||||
}
|
||||
items = PyMapping_Items(dct);
|
||||
if (items == NULL)
|
||||
goto bail;
|
||||
if (PyObject_IsTrue(s->sort_keys) && PyList_Sort(items) < 0)
|
||||
goto bail;
|
||||
it = PyObject_GetIter(items);
|
||||
Py_DECREF(items);
|
||||
if (it == NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue