summaryrefslogtreecommitdiff
path: root/src/runtime/python
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/python')
-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;