CountFields/abrivan
CountFields/Stephan
t1def fcounter(S, *args):t1def fcounter(K, *args):
2    s = S(*args)2    g = K(*args)
3    rs = [j for j in dir(s) if j[0] != '_']3    a = [j for j in dir(g) if j[0] != '_']
4    rS = [j for j in dir(S) if j[0] != '_']4    b = [j for j in dir(K) if j[0] != '_']
5    rSm = [j for j in rS if callable(getattr(S, j))]5    c = [j for j in b if callable(getattr(K, 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))]
6    rSf = [j for j in rS if not callable(getattr(S, j))]8    f = [j for j in a if not callable(getattr(g, j))]
7    rsm = [j for j in rs if 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]
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]
1210
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op