py/objtype: Remove TODO about storing attributes to classes.

This behaviour is tested in basics/class_store.py and follows CPython.
pull/4199/head
Damien George 2018-09-28 23:15:12 +10:00
rodzic 2c7a3061d5
commit 2eb0170157
1 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -1018,8 +1018,6 @@ STATIC void type_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
} else {
// delete/store attribute
// TODO CPython allows STORE_ATTR to a class, but is this the correct implementation?
if (self->locals_dict != NULL) {
assert(self->locals_dict->base.type == &mp_type_dict); // MicroPython restriction, for now
mp_map_t *locals_map = &self->locals_dict->map;