chiark / gitweb /
Rename the class `check' method to `checkgroup'.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 17 Feb 2007 12:18:40 +0000 (12:18 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 17 Feb 2007 12:27:52 +0000 (12:27 +0000)
Otherwise it interferes with the element `check' method, which gets used
by preference.

group.c

diff --git a/group.c b/group.c
index cd3472f07d3d30f302589afb8fb319c360ae299b..001eb19758206bd3c9edeab2ed0ff6a27806f104 100644 (file)
--- a/group.c
+++ b/group.c
@@ -784,13 +784,13 @@ static PyObject *gmeth_mexp(PyObject *me, PyObject *arg)
                      gmexp_id, gmexp_fill, gmexp_exp, gmexp_drop));
 }
 
-static PyObject *gmeth_check(PyObject *me, PyObject *arg, PyObject *kw)
+static PyObject *gmeth_checkgroup(PyObject *me, PyObject *arg, PyObject *kw)
 {
   char *kwlist[] = { "rng", 0 };
   grand *r = &rand_global;
   const char *p;
 
-  if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:check", kwlist,
+  if (!PyArg_ParseTupleAndKeywords(arg, kw, "|O&:checkgroup", kwlist,
                                   convgrand, &r))
     goto end;
   if ((p = G_CHECK(GROUP_G(me), r)) != 0)
@@ -1051,7 +1051,7 @@ static PyMethodDef group_pymethods[] = {
 #define METHNAME(name) gmeth_##name
   METH (mexp,          "\
 G.mexp([(X0, N0), (X1, N1), ...]) -> X0^N0 X1^N1 ...")
-  KWMETH(check,                "G.check(rand = random): check group is good")
+  KWMETH(checkgroup,   "G.checkgroup(rand = random): check group is good")
 #undef METHNAME
   { 0 }
 };