Александр Репин, 528 группа ClassOnly 15162
Крет Вячеслав Александрович, 321 группа ClassOnly 14340
f1from itertools import productf1from itertools import product
n2s = {''.join(x) for x in product('abcd', repeat=4)}n2example = {''.join(i) for i in product('abcd', repeat=4)}
33
4class Struct:4class Struct:
n5    __slots__ = []n5    __slots__ = ()
66
t7    def __getattribute__(self, a):t7    def __getattribute__(self, item):
8        if a in s:8        if item in example:
9            return a9            return item
10        else:
11            raise AttributeError10        raise AttributeError
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op