summaryrefslogtreecommitdiff
path: root/tests/memleak.py
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-04-19 17:30:57 +0200
committerJulian Andres Klode <jak@debian.org>2009-04-19 17:30:57 +0200
commitd19943ea8489e06a1f5cd0bd545e0a0aeb4b8551 (patch)
treea41904c7fbeb9065be976b5dd15661c931e644b2 /tests/memleak.py
parenta7026989dd1ea3b70cbfc80cf92077efb2f52ba3 (diff)
downloadpython-apt-d19943ea8489e06a1f5cd0bd545e0a0aeb4b8551.tar.gz
* Update the code to use the new classes.
Diffstat (limited to 'tests/memleak.py')
-rwxr-xr-xtests/memleak.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/memleak.py b/tests/memleak.py
index 659091fc..5299f35f 100755
--- a/tests/memleak.py
+++ b/tests/memleak.py
@@ -29,10 +29,10 @@ for i in range(100):
# no memleak, but more or less the apt.Cache.open() code
for i in range(100):
- cache = apt_pkg.GetCache()
- depcache = apt_pkg.GetDepCache(cache)
- records = apt_pkg.GetPkgRecords(cache)
- list = apt_pkg.GetPkgSourceList()
+ cache = apt_pkg.Cache()
+ depcache = apt_pkg.DepCache(cache)
+ records = apt_pkg.PackageRecords(cache)
+ list = apt_pkg.SourceList()
list.ReadMainList()
dict = {}
for pkg in cache.Packages: