summaryrefslogtreecommitdiff
path: root/contrib/py-bindings/gfmodule.c
diff options
context:
space:
mode:
authorjordi.saludes <jordi.saludes@upc.edu>2011-12-08 13:08:36 +0000
committerjordi.saludes <jordi.saludes@upc.edu>2011-12-08 13:08:36 +0000
commitbff947f44f70e3c3f5f4d25ed07524730ca56acf (patch)
tree61343d40937fb52800d7b4537016da64d8fd7a6d /contrib/py-bindings/gfmodule.c
parent093ba41fa3a1c5d0e470d29fe1b3df4bc519fbb6 (diff)
Changed 'lin' method name to 'linearize' (py-bindings).
Diffstat (limited to 'contrib/py-bindings/gfmodule.c')
-rw-r--r--contrib/py-bindings/gfmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/py-bindings/gfmodule.c b/contrib/py-bindings/gfmodule.c
index dc8f583a7..931baf072 100644
--- a/contrib/py-bindings/gfmodule.c
+++ b/contrib/py-bindings/gfmodule.c
@@ -175,7 +175,7 @@ completions(PGF *self, PyObject *args, PyObject *kws)
static PyMethodDef pgf_methods[] = {
{"parse", (PyCFunction)parse, METH_VARARGS|METH_KEYWORDS, "Parse a string."},
- {"lin", (PyCFunction)linearize, METH_VARARGS,"Linearize tree."},
+ {"linearize", (PyCFunction)linearize, METH_VARARGS,"Linearize tree."},
{"lang_code", (PyCFunction)languageCode, METH_VARARGS,"Get the language code."},
{"print_name", (PyCFunction)printName, METH_VARARGS,"Get the print name for a id."},
{"fun_type", (PyCFunction)functiontype, METH_VARARGS,"Get the type of a fun expression."},