CountFields/RubenkovAndrej
CountFields/Tyapkins
t1def fcounter(C, *args):t1def fcounter(cln, *clargs):
2    cm = list((i for i in dir(C) if callable(getattr(C, i)) and i[0] != '_'))2    cm = sorted([i for i in dir(cln) if (
3    cf = list(3        callable(getattr(cln, i)) and i[0] != '_')])
4        (i for i in dir(C) if not callable(4    cf = sorted([i for i in dir(cln) if (
5            getattr(5        not(callable(getattr(cln, i))) and i[0] != '_')])
6                C, i)) and i[0] != '_'))6    obj = cln(*clargs)
7    c = C(*args)7    om = sorted([i for i in dir(obj) if (
8    om = list((i for i in dir(c) if callable(
9        getattr(c, i)) and i[0] != '_' and i not in cm))8        callable(getattr(obj, i)) and i[0] != '_' and i not in cm)])
10    of = list((i for i in dir(c) if not callable(9    of = sorted([i for i in dir(obj) if (
11        getattr(c, i)) and i[0] != '_' and i not in cf))10        not(callable(getattr(obj, i))) and i[0] != '_' and i not in cf)])
12    return [cm, cf, om, of]11    return cm, cf, om, of
1312
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op