We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64f187 commit 01f33bbCopy full SHA for 01f33bb
graalpython/com.oracle.graal.python.cext/src/object.c
@@ -393,7 +393,7 @@ int PyType_Ready(PyTypeObject* cls) {
393
if (mappings) {
394
ADD_SLOT("__len__", mappings->mp_length, -1);
395
ADD_SLOT("__getitem__", mappings->mp_subscript, -2);
396
- ADD_SLOT("__setitem__", mappings->mp_subscript, -3);
+ ADD_SLOT("__setitem__", mappings->mp_ass_subscript, -3);
397
}
398
399
PyAsyncMethods* async = cls->tp_as_async;
0 commit comments