summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2013-10-08 20:50:28 +0200
committerJulian Andres Klode <jak@debian.org>2013-10-08 20:50:28 +0200
commit29415534292efd2b0c4d2306857ad5c7db5369c5 (patch)
tree38f297785ed4328caeac9ab55da1a41e01e1fc09 /python
parent08f525a905f7f76f7d810c7d4f02859fd0575414 (diff)
downloadpython-apt-29415534292efd2b0c4d2306857ad5c7db5369c5.tar.gz
python/apt_pkgmodule.cc: Fix documentation of version_compare (Closes: #680891)
This was supposed to be fixed some time ago in mvo's bzr branch but it seems that it did not survive the git migration.
Diffstat (limited to 'python')
-rw-r--r--python/apt_pkgmodule.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc
index 5b06f721..65a7c950 100644
--- a/python/apt_pkgmodule.cc
+++ b/python/apt_pkgmodule.cc
@@ -59,8 +59,9 @@ static PyObject *py_gettext(PyObject *self, PyObject *Args) {
// These are kind of legacy..
static char *doc_VersionCompare =
"version_compare(a: str, b: str) -> int\n\n"
- "Compare the given versions; return -1 if 'a' is smaller than 'b',\n"
- "0 if they are equal, and 2 if 'a' is larger than 'b'.";
+ "Compare the given versions; return a strictly negative value if 'a' is \n"
+ "smaller than 'b', 0 if they are equal, and a strictly positive value if\n"
+ "'a' is larger than 'b'.";
static PyObject *VersionCompare(PyObject *Self,PyObject *Args)
{
char *A;