summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/examples/cache-packages.py2
-rw-r--r--doc/source/examples/cache-pkgfile.py2
-rw-r--r--doc/source/examples/missing-deps.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/examples/cache-packages.py b/doc/source/examples/cache-packages.py
index 1abe7cf2..0af96f7d 100644
--- a/doc/source/examples/cache-packages.py
+++ b/doc/source/examples/cache-packages.py
@@ -8,7 +8,7 @@ def main():
"""Main."""
apt_pkg.InitConfig()
apt_pkg.InitSystem()
- cache = apt_pkg.GetCache()
+ cache = apt_pkg.Cache()
print "Essential packages:"
for pkg in cache.Packages:
if pkg.Essential:
diff --git a/doc/source/examples/cache-pkgfile.py b/doc/source/examples/cache-pkgfile.py
index f25975d3..a7c22c97 100644
--- a/doc/source/examples/cache-pkgfile.py
+++ b/doc/source/examples/cache-pkgfile.py
@@ -5,7 +5,7 @@ import apt_pkg
def main():
"""Example for PackageFile()"""
apt_pkg.init()
- cache = apt_pkg.GetCache()
+ cache = apt_pkg.Cache()
for pkgfile in cache.FileList:
print 'Package-File:', pkgfile.FileName
print 'Index-Type:', pkgfile.IndexType # 'Debian Package Index'
diff --git a/doc/source/examples/missing-deps.py b/doc/source/examples/missing-deps.py
index 3ca16e45..dd5eeb8a 100644
--- a/doc/source/examples/missing-deps.py
+++ b/doc/source/examples/missing-deps.py
@@ -35,7 +35,7 @@ def main():
apt_pkg.InitConfig()
apt_pkg.InitSystem()
- cache = apt_pkg.GetCache()
+ cache = apt_pkg.Cache()
for pkg in sorted(cache.Packages, key=lambda pkg: pkg.Name):
# pkg is from a list of packages, sorted by name.