mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
don't make shared keys with dict subclasses
This commit is contained in:
parent
99e6f87586
commit
53b977127f
1 changed files with 1 additions and 1 deletions
|
|
@ -3686,7 +3686,7 @@ _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr,
|
|||
res = PyDict_SetItem(dict, key, value);
|
||||
if (cached != ((PyDictObject *)dict)->ma_keys) {
|
||||
/* Either update tp->ht_cached_keys or delete it */
|
||||
if (cached->dk_refcnt == 1) {
|
||||
if (cached->dk_refcnt == 1 && PyDict_CheckExact(dict)) {
|
||||
CACHED_KEYS(tp) = make_keys_shared(dict);
|
||||
if (CACHED_KEYS(tp) == NULL)
|
||||
return -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue