Игорь Качушкин, 314 группа ExceptionTree 11541
321 Мороз Виктор Владимирович ExceptionTree 13450
f1class ExceptionTree:f1class ExceptionTree:
22
3    def __init__(self):3    def __init__(self):
n4        self.exceptions = {}n4        self.excs = {}
55
t6    def __call__(self, index):t6    def __call__(self, n):
7        if index in self.exceptions:7        if in self.excs:
8            return self.exceptions[index]8            return self.excs[n]
9        parent_index = index // 29        parent_n = n // 2
10        parent_exception = self(parent_index) if parent_index > 0 else E10        parent_ex = self(parent_n) if parent_n > 0 else Exception
>xception 
11        exception_class = type(f'Exception-{index}', (parent_exception,)11        ex_class = type(f'Exception-{n}', (parent_ex,), {'n': n})
>, {'n': index}) 
12        self.exceptions[index] = exception_class12        self.excs[n] = ex_class
13        return exception_class13        return ex_class
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op