Валиахметов Булат, 603 группа ClassOnly 14952
Бедрин Павел Александрович, 428 группа ClassOnly 15054
f1from itertools import productf1from itertools import product
n2ATTRS = set((''.join(seq) for seq in product('abcd', repeat=4)))n2slots = set((''.join(t) for t in product('abcd', repeat=4)))
33
4class Struct:4class Struct:
5    __slots__ = ()5    __slots__ = ()
66
t7    def __getattribute__(self, item):t7    def __getattribute__(self, attr):
8        if item in ATTRS:8        if attr in slots:
9            return item9            return attr
10        else:
11            raise AttributeError10        raise AttributeError
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op