summaryrefslogtreecommitdiff
path: root/tests/old/pkgrecords.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/old/pkgrecords.py')
-rw-r--r--tests/old/pkgrecords.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/old/pkgrecords.py b/tests/old/pkgrecords.py
index 2fe6ad20..3f253bf3 100644
--- a/tests/old/pkgrecords.py
+++ b/tests/old/pkgrecords.py
@@ -12,27 +12,27 @@ def main():
apt_pkg.init()
cache = apt_pkg.Cache()
depcache = apt_pkg.DepCache(cache)
- depcache.Init()
- i=0
+ depcache.init()
+ i = 0
print "Running PkgRecords test on all packages:"
- for pkg in cache.Packages:
+ for pkg in cache.packages:
i += 1
records = apt_pkg.PackageRecords(cache)
- if len(pkg.VersionList) == 0:
+ if len(pkg.version_list) == 0:
#print "no available version, cruft"
continue
- version = depcache.GetCandidateVer(pkg)
+ version = depcache.get_candidate_ver(pkg)
if not version:
continue
- file, index = version.FileList.pop(0)
- if records.Lookup((file, index)):
- #print records.FileName
- x = records.FileName
- y = records.LongDesc
+ file, index = version.file_list.pop(0)
+ if records.lookup((file, index)):
+ #print records.filename
+ x = records.filename
+ y = records.long_desc
pass
print "\r%i/%i=%.3f%% " % (
- i, cache.PackageCount,
- (float(i) / float(cache.PackageCount) * 100)),
+ i, cache.package_count,
+ (float(i) / float(cache.package_count) * 100)),
if __name__ == "__main__":