summaryrefslogtreecommitdiff
path: root/python/depcache.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-06-04 17:18:29 +0200
committerJulian Andres Klode <jak@debian.org>2009-06-04 17:18:29 +0200
commit884c8a4ebdfcedf8143dcb2ce8ef92779c353e06 (patch)
tree2dd2bbb2c5a8804aa926852fac16c93a5b4a0607 /python/depcache.cc
parent34f5670f3af2b04a4a575695584e46e4bf4106e9 (diff)
downloadpython-apt-884c8a4ebdfcedf8143dcb2ce8ef92779c353e06.tar.gz
python/: Unify naming conventions for all new names.
Unify all names to follow these rules: 1. Replace the first [A-Z] with the lowercase version [a-z] 2. Replace multiple [A-Z] with [A-Z][a-z] (one upper, remaining ones lowercase) 3. Replace all remaining [A-Z] with _[a-z] This brings us from 'FileName' to 'file_name' and from 'DescURI' to 'desc_uri'. We will at a later stage add some exceptions to this rule, like 'filename' instead of 'file_name', to improve readability.
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},