godot/misc/scripts/memsort.py
Rémi Verschelde 6e5246e312 Reorder the folders in tools to prepare moving tools/editor
- `certs` and `editor_fonts` go to `thirdparty`
- `dist` and `scripts` go to a new `misc` folder
- `collada` and `doc` go to `tools/editor`

The next step will be to rename `tools/editor` to `editor` directly,
but this will be done at the right time to avoid breaking too many PRs.

(cherry picked from commit b87a232668)
2017-03-18 23:29:43 +01:00

36 lines
455 B
Python

import sys
arg = "memdump.txt"
if (len(sys.argv) > 1):
arg = sys.argv[1]
f = open(arg, "rb")
l = f.readline()
sum = {}
cnt = {}
while(l != ""):
s = l.split("-")
amount = int(s[1])
what = s[2]
if (what in sum):
sum[what] += amount
cnt[what] += 1
else:
sum[what] = amount
cnt[what] = 1
l = f.readline()
for x in sum:
print(x.strip() + "(" + str(cnt[x]) + "):\n: " + str(sum[x]))