CountFields/Stephan
CountFields/abrivan
t1def fcounter(K, *args):t1def fcounter(S, *args):
2    g = K(*args)2    s = S(*args)
3    a = [j for j in dir(g) if j[0] != '_']3    rs = [j for j in dir(s) if j[0] != '_']
4    b = [j for j in dir(K) if j[0] != '_']4    rS = [j for j in dir(S) if j[0] != '_']
5    c = [j for j in b if callable(getattr(K, j))]5    rSm = [j for j in rS if callable(getattr(S, j))]
6    d = [j for j in b if not callable(getattr(K, j))]
7    e = [j for j in a if callable(getattr(g, j))]
8    f = [j for j in a if not callable(getattr(g, j))]6    rSf = [j for j in rS if not callable(getattr(S, j))]
9    return c, d, [j for j in e if j not in c], [j for j in f if j not in d]7    rsm = [j for j in rs if callable(getattr(s, j))]
8    rsf = [j for j in rs if not callable(getattr(s, j))]
9    return rSm, rSf, [
10        j for j in rsm if j not in rSm], [
11        j for j in rsf if j not in rSf]
1012
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op