summaryrefslogtreecommitdiff
path: root/python/depcache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python/depcache.cc')
-rw-r--r--python/depcache.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/python/depcache.cc b/python/depcache.cc
index f3b16211..650dcb23 100644
--- a/python/depcache.cc
+++ b/python/depcache.cc
@@ -529,19 +529,19 @@ static PyObject *PkgDepCacheMarkedReinstall(PyObject *Self,PyObject *Args)
static PyMethodDef PkgDepCacheMethods[] =
{
{"init",PkgDepCacheInit,METH_VARARGS,"Init the depcache (done on construct automatically)"},
- {"get_candidate",PkgDepCacheGetCandidateVer,METH_VARARGS,"Get candidate version"},
- {"set_candidate",PkgDepCacheSetCandidateVer,METH_VARARGS,"Set candidate version"},
+ {"get_candidate_ver",PkgDepCacheGetCandidateVer,METH_VARARGS,"Get candidate version"},
+ {"set_candidate_ver",PkgDepCacheSetCandidateVer,METH_VARARGS,"Set candidate version"},
// 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_pinfile",PkgDepCacheReadPinFile,METH_VARARGS,"Read the pin policy"},
+ {"read_pin_file",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_reinstall",PkgDepCacheSetReInstall,METH_VARARGS,"Set if the package should be reinstalled"},
+ {"set_re_install",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"},
@@ -607,12 +607,12 @@ static PyObject *PkgDepCacheGetDebSize(PyObject *Self,void*) {
#undef depcache
static PyGetSetDef PkgDepCacheGetSet[] = {
- {"brokencount",PkgDepCacheGetBrokenCount},
- {"debsize",PkgDepCacheGetDebSize},
- {"delcount",PkgDepCacheGetDelCount},
- {"instcount",PkgDepCacheGetInstCount},
- {"keepcount",PkgDepCacheGetKeepCount},
- {"usrsize",PkgDepCacheGetUsrSize},
+ {"broken_count",PkgDepCacheGetBrokenCount},
+ {"deb_size",PkgDepCacheGetDebSize},
+ {"del_count",PkgDepCacheGetDelCount},
+ {"inst_count",PkgDepCacheGetInstCount},
+ {"keep_count",PkgDepCacheGetKeepCount},
+ {"usr_size",PkgDepCacheGetUsrSize},
#ifdef COMPAT_0_7
{"BrokenCount",PkgDepCacheGetBrokenCount},
{"DebSize",PkgDepCacheGetDebSize},