summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-09-07 13:34:02 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-09-07 13:34:02 +0200
commit3aaf50270475e0a2a5fc8e7783e2f8917f8ac327 (patch)
treeb6f94961aee1ebdb7ff0730e95bb9490e040c0ff
parentb390a866fc3af9e7050148f11fb558fd52a8a703 (diff)
downloadpython-apt-3aaf50270475e0a2a5fc8e7783e2f8917f8ac327.tar.gz
cherry pick -r453 from lp:~mvo/python-apt/debian-sid
-rw-r--r--python/cache.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/cache.cc b/python/cache.cc
index e87d73d4..cd51fcc3 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -573,8 +573,9 @@ static PyGetSetDef PackageGetSet[] = {
{"rev_depends_list",PackageGetRevDependsList,0,
"An apt_pkg.DependencyList object of all reverse dependencies."},
{"provides_list",PackageGetProvidesList,0,
- "Ignore it, it does nothing. You want to use\n"
- "apt_pkg.Version.provides_list instead."},
+ "A list of all packages providing this package. The list contains\n"
+ "tuples in the format (providesname, providesver, version)\n"
+ "where 'version' is an apt_pkg.Version object."},
{"selected_state",PackageGetSelectedState,0,
"The state of the selection, which can be compared against the constants\n"
"SELSTATE_DEINSTALL, SELSTATE_HOLD, SELSTATE_INSTALL, SELSTATE_PURGE,\n"