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