summaryrefslogtreecommitdiff
path: root/src/runtime/python/pypgf.c
diff options
context:
space:
mode:
authorKrasimir Angelov <kr.angelov@gmail.com>2017-09-06 14:37:51 +0200
committerKrasimir Angelov <kr.angelov@gmail.com>2017-09-06 14:37:51 +0200
commit301b1009887440a76cd7022dbb53bda4211d49db (patch)
treea16b95e4970df59571cbc23b730f443e4a1d47e6 /src/runtime/python/pypgf.c
parentef071d9157deec9af1f2ac63dae63599affea031 (diff)
word completion in the C parser now returns information about the function which generates the token
Diffstat (limited to 'src/runtime/python/pypgf.c')
-rw-r--r--src/runtime/python/pypgf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/runtime/python/pypgf.c b/src/runtime/python/pypgf.c
index 97718103b..56ee32876 100644
--- a/src/runtime/python/pypgf.c
+++ b/src/runtime/python/pypgf.c
@@ -1163,7 +1163,10 @@ Iter_fetch_token(IterObject* self)
PyObject* py_tok = PyString_FromString(tp->tok);
PyObject* py_cat = PyString_FromString(tp->cat);
- PyObject* res = Py_BuildValue("(f,O,O)", tp->prob, py_tok, py_cat);
+ PyObject* py_fun = PyString_FromString(tp->fun);
+ PyObject* res = Py_BuildValue("(f,O,O,O)", tp->prob, py_tok, py_cat, py_fun);
+ Py_DECREF(py_fun);
+ Py_DECREF(py_cat);
Py_DECREF(py_tok);
return res;