summaryrefslogtreecommitdiff
path: root/apt/cache.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-08-03 10:38:46 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-08-03 10:38:46 +0000
commit778a4b5fa470c03a598f3cf6f81ab73c3855f488 (patch)
tree77bda2c5babe7e826539d21b2190985f6e20a09a /apt/cache.py
parent7d126728ae138e08bfef5abd71de1e608ee7ea55 (diff)
downloadpython-apt-778a4b5fa470c03a598f3cf6f81ab73c3855f488.tar.gz
* some docstrings added, more api fixing
Diffstat (limited to 'apt/cache.py')
-rw-r--r--apt/cache.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/apt/cache.py b/apt/cache.py
index 39640da7..7ec99c22 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -25,7 +25,11 @@ from apt.progress import OpTextProgress
from UserDict import UserDict
class Cache(object):
- """ Package cache object """
+ """ Dictionary-like package cache
+ This class has all the packages that are available in it's
+ dictionary
+ """
+
def __init__(self, progress=None):
self._callbacks = {}
self.open(progress)