Юрий Савиных, 527 группа ClassOnly 14244
Бедрин Павел Александрович, 428 группа ClassOnly 15054
f1from itertools import productf1from itertools import product
n2_global_lookup_slots = set((''.join(el) for el in product('abcd', repeat=4)))n2slots = set((''.join(t) for t in product('abcd', repeat=4)))
33
4class Struct:4class Struct:
n5    __slots__ = []n5    __slots__ = ()
66
t7    def __getattribute__(self, __name):t7    def __getattribute__(self, attr):
8        if __name in _global_lookup_slots:8        if attr in slots:
9            return __name9            return attr
10        raise AttributeError10        raise AttributeError
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op