HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //proc/1233/root/home/arjun/python-apt/tests/old/memleak.py
#!/usr/bin/python3

import gc
import time

import apt_pkg

import apt

cache = apt.Cache()

# memleak
for i in range(100):
    cache.open(None)
    print(cache["apt"].name)
    time.sleep(1)
    gc.collect()
    f = open("%s" % i, "w")
    for obj in gc.get_objects():
        f.write("%s\n" % str(obj))
    f.close()

# memleak
# for i in range(100):
#       cache = apt.Cache()
#       time.sleep(1)
#       cache = None
#       gc.collect()

# no memleak, but more or less the apt.Cache.open() code
for i in range(100):
    cache = apt_pkg.Cache()
    depcache = apt_pkg.DepCache(cache)
    records = apt_pkg.PackageRecords(cache)
    list = apt_pkg.SourceList()
    list.read_main_list()
    dict = {}
    for pkg in cache.packages:
        if len(pkg.version_list) > 0:
            dict[pkg.name] = apt.package(cache, depcache, records, list, None, pkg)

    print(cache["apt"])
    time.sleep(1)

    gc.collect()