����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.148.182.104 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python37/lib64/python3.7/site-packages/guppy/heapy/test/ |
Upload File : |
import importlib # This is to see that the total memory usage doesn't increase with time # i.e. no leakage / link between consecutive usages of hsp. # This will run for ever, to be monitored by the printout and some external monitor. def t(): from guppy import hsp while 1: import guppy.heapy.UniSet import gc importlib.reload(guppy.heapy.UniSet) hp = hsp() x = None x = hp.heap() print(x) gc.collect() print(x[0]) print(x[1]) print(x[2]) gc.collect() print(x & dict)