subvertpy-users team mailing list archive
-
subvertpy-users team
-
Mailing list archive
-
Message #00030
[PATCH] Add api_version() function to wc
# HG changeset patch
# User Dan Villiom Podlaski Christiansen <danchr@xxxxxxxxx>
# Date 1285247033 -7200
# Node ID 8f4b72eb059d1ca285c4925b3743a5fc205eda97
# Parent 58d7a4204d3f8db83fc42d0ac152b6e8e2626d70
Add api_version() function to wc.
The docstring for version() is updated to distinguish the two.
diff --git a/subvertpy/wc.c b/subvertpy/wc.c
--- a/subvertpy/wc.c
+++ b/subvertpy/wc.c
@@ -150,7 +150,7 @@ static const REPORTER_T py_ra_reporter =
/**
- * Get libsvn_wc version information.
+ * Get runtime libsvn_wc version information.
*
* :return: tuple with major, minor, patch version number and tag.
*/
@@ -161,6 +161,20 @@ static PyObject *version(PyObject *self)
ver->patch, ver->tag);
}
+SVN_VERSION_DEFINE(svn_api_version);
+
+/**
+ * Get compile-time libsvn_wc version information.
+ *
+ * :return: tuple with major, minor, patch version number and tag.
+ */
+static PyObject *api_version(PyObject *self)
+{
+ const svn_version_t *ver = &svn_api_version;
+ return Py_BuildValue("(iiis)", ver->major, ver->minor,
+ ver->patch, ver->tag);
+}
+
static svn_error_t *py_wc_found_entry(const char *path, const svn_wc_entry_t *entry, void *walk_baton, apr_pool_t *pool)
{
PyObject *fn, *ret;
@@ -1343,7 +1357,14 @@ static PyMethodDef wc_methods[] = {
{ "is_wc_prop", is_wc_prop, METH_VARARGS,
"is_wc_prop(name) -> bool" },
{ "revision_status", (PyCFunction)revision_status, METH_KEYWORDS|METH_VARARGS, "revision_status(wc_path, trail_url=None, committed=False, cancel_func=None) -> (min_rev, max_rev, switched, modified)" },
- { "version", (PyCFunction)version, METH_NOARGS, "version() -> (major, minor, patch, tag)" },
+ { "version", (PyCFunction)version, METH_NOARGS,
+ "version() -> (major, minor, patch, tag)\n\n"
+ "Version of libsvn_wc currently used."
+ },
+ { "api_version", (PyCFunction)api_version, METH_NOARGS,
+ "api_version() -> (major, minor, patch, tag)\n\n"
+ "Version of libsvn_wc Subvertpy was compiled against."
+ },
{ "match_ignore_list", (PyCFunction)match_ignore_list, METH_VARARGS,
"match_ignore_list(str, patterns) -> bool" },
{ NULL, }
References