summaryrefslogtreecommitdiff
path: root/python/depcache.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-06-05 15:00:15 +0200
committerJulian Andres Klode <jak@debian.org>2009-06-05 15:00:15 +0200
commit14dfadc054e9bdafd2507dbca70dbec925471ae0 (patch)
tree8d2c0e85fde3010267e87d14f4f88cb352b23a0e /python/depcache.cc
parentcdabff6d329baba8024224b362f79d822ddd943e (diff)
downloadpython-apt-14dfadc054e9bdafd2507dbca70dbec925471ae0.tar.gz
Introduce the rename rules formally, and add some exceptions.
Diffstat (limited to 'python/depcache.cc')
-rw-r--r--python/depcache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/depcache.cc b/python/depcache.cc
index 650dcb23..f69802f8 100644
--- a/python/depcache.cc
+++ b/python/depcache.cc
@@ -535,13 +535,13 @@ static PyMethodDef PkgDepCacheMethods[] =
// global cache operations
{"upgrade",PkgDepCacheUpgrade,METH_VARARGS,"Perform Upgrade (optional boolean argument if dist-upgrade should be performed)"},
{"fix_broken",PkgDepCacheFixBroken,METH_VARARGS,"Fix broken packages"},
- {"read_pin_file",PkgDepCacheReadPinFile,METH_VARARGS,"Read the pin policy"},
+ {"read_pinfile",PkgDepCacheReadPinFile,METH_VARARGS,"Read the pin policy"},
{"minimize_upgrade",PkgDepCacheMinimizeUpgrade, METH_VARARGS,"Go over the entire set of packages and try to keep each package marked for upgrade. If a conflict is generated then the package is restored."},
// Manipulators
{"mark_keep",PkgDepCacheMarkKeep,METH_VARARGS,"Mark package for keep"},
{"mark_delete",PkgDepCacheMarkDelete,METH_VARARGS,"Mark package for delete (optional boolean argument if it should be purged)"},
{"mark_install",PkgDepCacheMarkInstall,METH_VARARGS,"Mark package for Install"},
- {"set_re_install",PkgDepCacheSetReInstall,METH_VARARGS,"Set if the package should be reinstalled"},
+ {"set_reinstall",PkgDepCacheSetReInstall,METH_VARARGS,"Set if the package should be reinstalled"},
// state information
{"is_upgradable",PkgDepCacheIsUpgradable,METH_VARARGS,"Is pkg upgradable"},
{"is_now_broken",PkgDepCacheIsNowBroken,METH_VARARGS,"Is pkg is now broken"},