Жан-Юль-Ян Азель, 414 группа (КФ) ExceptionTree 13074
Казанцева Варвара Денисовна, 508 ExceptionTree 11886
f1class ExceptionTree:f1class ExceptionTree:
22
3    def __init__(self):3    def __init__(self):
4        self.exceptions = {1: type('Exception-1', (Exception,), {'n': 1}4        self.exceptions = {1: type('Exception-1', (Exception,), {'n': 1}
>)}>)}
55
t6    def __call__(self, index):t6    def __call__(self, n):
7        if index not in self.exceptions:7        if n not in self.exceptions:
8            parent_index = index // 28            parent_n = n // 2
9            if parent_index not in self.exceptions:9            if parent_n not in self.exceptions:
10                self(parent_index)10                self(parent_n)
11            parent_exception = self.exceptions[parent_index]11            parent_class = self.exceptions[parent_n]
12            self.exceptions[index] = type(f'Exception-{index}', (parent_12            self.exceptions[n] = type(f'Exception-{n}', (parent_class,),
>exception,), {'n': index})> {'n': n})
13        return self.exceptions[index]13        return self.exceptions[n]
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op