mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict that
was mutated by direct calls of dict methods.
This commit is contained in:
@@ -2153,6 +2153,60 @@ class OrderedDictTests:
|
||||
key = c0 + c1
|
||||
od[key] = key
|
||||
|
||||
# Direct use of dict methods
|
||||
|
||||
def test_dict_setitem(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
dict.__setitem__(od, 'spam', 1)
|
||||
self.assertNotIn('NULL', repr(od))
|
||||
|
||||
def test_dict_delitem(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
od['spam'] = 1
|
||||
od['ham'] = 2
|
||||
dict.__delitem__(od, 'spam')
|
||||
with self.assertRaises(KeyError):
|
||||
repr(od)
|
||||
|
||||
def test_dict_clear(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
od['spam'] = 1
|
||||
od['ham'] = 2
|
||||
dict.clear(od)
|
||||
self.assertNotIn('NULL', repr(od))
|
||||
|
||||
def test_dict_pop(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
od['spam'] = 1
|
||||
od['ham'] = 2
|
||||
dict.pop(od, 'spam')
|
||||
with self.assertRaises(KeyError):
|
||||
repr(od)
|
||||
|
||||
def test_dict_popitem(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
od['spam'] = 1
|
||||
od['ham'] = 2
|
||||
dict.popitem(od)
|
||||
with self.assertRaises(KeyError):
|
||||
repr(od)
|
||||
|
||||
def test_dict_setdefault(self):
|
||||
OrderedDict = self.OrderedDict
|
||||
od = OrderedDict()
|
||||
dict.setdefault(od, 'spam', 1)
|
||||
self.assertNotIn('NULL', repr(od))
|
||||
|
||||
def test_dict_update(self):
|
||||
od = OrderedDict()
|
||||
dict.update(od, [('spam', 1)])
|
||||
self.assertNotIn('NULL', repr(od))
|
||||
|
||||
|
||||
class PurePythonOrderedDictTests(OrderedDictTests, unittest.TestCase):
|
||||
|
||||
|
||||
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX
|
||||
Core and Builtins
|
||||
-----------------
|
||||
|
||||
- Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict that
|
||||
was mutated by direct calls of dict methods.
|
||||
|
||||
- Issue #25449: Iterating OrderedDict with keys with unstable hash now raises
|
||||
KeyError in C implementations as well as in Python implementation.
|
||||
|
||||
|
||||
@@ -1462,7 +1462,6 @@ odict_repr(PyODictObject *self)
|
||||
{
|
||||
int i;
|
||||
_Py_IDENTIFIER(items);
|
||||
Py_ssize_t count = -1;
|
||||
PyObject *pieces = NULL, *result = NULL;
|
||||
const char *classname;
|
||||
|
||||
@@ -1481,6 +1480,7 @@ odict_repr(PyODictObject *self)
|
||||
}
|
||||
|
||||
if (PyODict_CheckExact(self)) {
|
||||
Py_ssize_t count = 0;
|
||||
_ODictNode *node;
|
||||
pieces = PyList_New(PyODict_SIZE(self));
|
||||
if (pieces == NULL)
|
||||
@@ -1499,8 +1499,19 @@ odict_repr(PyODictObject *self)
|
||||
if (pair == NULL)
|
||||
goto Done;
|
||||
|
||||
PyList_SET_ITEM(pieces, ++count, pair); /* steals reference */
|
||||
if (count < PyList_GET_SIZE(pieces))
|
||||
PyList_SET_ITEM(pieces, count, pair); /* steals reference */
|
||||
else {
|
||||
if (PyList_Append(pieces, pair) < 0) {
|
||||
Py_DECREF(pair);
|
||||
goto Done;
|
||||
}
|
||||
Py_DECREF(pair);
|
||||
}
|
||||
count++;
|
||||
}
|
||||
if (count < PyList_GET_SIZE(pieces))
|
||||
PyList_GET_SIZE(pieces) = count;
|
||||
}
|
||||
else {
|
||||
PyObject *items = _PyObject_CallMethodIdObjArgs((PyObject *)self,
|
||||
|
||||
Reference in New Issue
Block a user