Казаринов Андрей Вячеславович, 620 группа ExceptionTree 18397
Балтаев Глеб Иркинович 341 ExceptionTree 12187
f1class ExceptionTree:f1class ExceptionTree:
22
3    def __init__(self):3    def __init__(self):
n4        self.exceptions = {1: type('Exception-1', (Exception,), {'n': 1}n4        self.exceptions = {1: type('Exception1', (Exception,), {'n': 1})
>)}>}
55
6    def __call__(self, n):6    def __call__(self, n):
7        if n not in self.exceptions:7        if n not in self.exceptions:
t8            parent_index = n // 2t8            parent = n // 2
9            if parent_index not in self.exceptions:9            if parent not in self.exceptions:
10                self(parent_index)10                self(parent)
11            self.exceptions[n] = type(f'Exception-{n}', (self.exceptions11            self.exceptions[n] = type(f'Exception{n}', (self.exceptions[
>[parent_index],), {'n': n})>parent],), {'n': n})
12        return self.exceptions[n]12        return self.exceptions[n]
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op