Александр Мозжухин Васильевич, 321 группа NegExtender 12578
Балабанов Фёдор Михайлович, 428 группа NegExtender 11803
f1class NegExt:f1class NegExt:
22
3    def __neg__(self):3    def __neg__(self):
t4        my_mro = self.__class__.mro()t4        mro = self.__class__.mro()
5        parent = my_mro[my_mro.index(NegExt) + 1]5        parent = mro[mro.index(NegExt) + 1]
6        try:6        try:
7            return self.__class__(parent.__neg__(self))7            return self.__class__(parent.__neg__(self))
8        except Exception:8        except Exception:
9            try:9            try:
10                return self.__class__(self[1:-1])10                return self.__class__(self[1:-1])
11            except Exception:11            except Exception:
12                return self.__class__(self)12                return self.__class__(self)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op