Here's what I get on both windows and linux.
Line # Mem usage Increment Line Contents
================================================
1 37.754 MiB 37.754 MiB @profile
2 def my_func():
3 45.195 MiB 7.441 MiB a = [1] * (10 ** 6)
4 197.820 MiB 152.625 MiB b = [2] * (2 * 10 ** 7)
5 45.449 MiB 0.000 MiB del b
6 45.449 MiB 0.000 MiB return a
I would expect it to show released memory after del b as it is described in the readme file.
Here's what I get on both windows and linux.
I would expect it to show released memory after
del bas it is described in the readme file.