UniSize/bucholga
UniSize/soapun
n1class SpecialClass:n1class Sizer:
2 
2    def __get__(self, obj, cls):3    def __get__(self, obj, cls):
3        if hasattr(obj, "__len__"):4        if hasattr(obj, "__len__"):
4            return len(obj)5            return len(obj)
n5        if hasattr(obj, "__abs__"):n6        elif hasattr(obj, "__abs__"):
6            return abs(obj)7            return abs(obj)
nn8        else:
7        return 09            return 0
810
911
t10def sizer(p_class):t12def sizer(cls):
11    p_class.size = SpecialClass()13    cls.size = Sizer()
12    return p_class14    return cls
1315
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op