Лёвин Александр, 524 группа ClassOnly 15344
Литвинов Арсений Александрович ClassOnly 14976
f1from itertools import productf1from itertools import product
22
3class Struct:3class Struct:
4    __slots__ = ()4    __slots__ = ()
n5    _keywords = {''.join(chars) for chars in product('abcd', repeat=4)}n5    __precomputed_set_of_names = {''.join(name) for name in product('abcd', repeat=4)}
66
7    def __getattribute__(self, name):7    def __getattribute__(self, name):
n8        if name in Struct._keywords:n8        if name in Struct.__precomputed_set_of_names:
9            return name9            return name
tt10        else:
10        raise AttributeError()11            raise AttributeError
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op