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