Всеволод Оплачко, 404 группа КФ ExceptionTree 12681
Вакуленко Георгий Константинович, 321 группа ExceptionTree 11652
f1class ExceptionTree:f1class ExceptionTree:
22
3    def __init__(self):3    def __init__(self):
n4        self.exception_classes = {}n4        self.nodes = {}
55
6    def __call__(self, n):6    def __call__(self, n):
n7        if n in self.exception_classes:n7        if n in self.nodes:
8            return self.exception_classes[n]8            return self.nodes[n]
9        if n == 1:9        elif n == 1:
10            exc_class = type(f'Exception-{n}', (Exception,), {'n': n})10            exc = type(f'E{n}', (Exception,), {'n': n})
11        else:11        else:
t12            parent_index = n // 2t12            parent = n // 2
13            parent_class = self(parent_index)13            parent_exc = self(parent)
14            exc_class = type(f'Exception-{n}', (parent_class,), {'n': n}14            exc = type(f'E{n}', (parent_exc,), {'n': n})
>) 
15        self.exception_classes[n] = exc_class15        self.nodes[n] = exc
16        return exc_class16        return exc
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op