CountFields/warnachinka
CountFields/disfavour
f1def fcounter(self, *args):f1def fcounter(self, *args):
2    q = self(*args)2    q = self(*args)
3    d = {0: [], 1: [], 2: [], 3: []}3    d = {0: [], 1: [], 2: [], 3: []}
nn4 
4    for i in dir(self):5    for item in dir(self):
5        if i[0] != "_":6        if item[0] != "_":
6            if not callable(getattr(self, i)):7            if callable(getattr(self, item)):
7                d[1].append(i)8                d[0].append(item)
8            else:9            else:
n9                d[0].append(i)n10                d[1].append(item)
11 
10    for j in dir(q):12    for item in dir(q):
11        if j[0] != "_":13        if item[0] != "_":
12            if not callable(getattr(q, j)):14            if callable(getattr(q, item)):
13                d[3].append(j)15                d[2].append(item)
14            else:16            else:
n15                d[2].append(j)n17                d[3].append(item)
18 
16    d[2] = [i for i in d[2] if i not in d[0]]19    d[2] = [i for i in d[2] if i not in d[0]]
17    d[3] = [i for i in d[3] if i not in d[1]]20    d[3] = [i for i in d[3] if i not in d[1]]
nn21 
18    map(sorted, d.values())22    map(sorted, d.values())
tt23 
19    return d[0], d[1], d[2], d[3]24    return d[0], d[1], d[2], d[3]
2025
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op