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