summaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-01-29 09:06:23 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-01-29 09:06:23 +0000
commit884664839322e7b87adacee91967ea52e625a12c (patch)
tree5f4f255cda4f14a6ec12b0b5bb3ea41c4042b2c8 /src/runtime
parente1a92efd766b37dc9b89a4501b1d10a05fb13bbc (diff)
fixed typos in the python binding: in a few places pgf_ExprType was used instead of pgf_ExprIterType
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/python/pgf/binding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/python/pgf/binding.c b/src/runtime/python/pgf/binding.c
index dbbf7eb3a..391e9b936 100644
--- a/src/runtime/python/pgf/binding.c
+++ b/src/runtime/python/pgf/binding.c
@@ -317,7 +317,7 @@ Concr_parse(ConcrObject* self, PyObject *args, PyObject *keywds)
return NULL;
ExprIterObject* pyres = (ExprIterObject*)
- pgf_ExprType.tp_alloc(&pgf_ExprIterType, 0);
+ pgf_ExprIterType.tp_alloc(&pgf_ExprIterType, 0);
if (pyres == NULL) {
return NULL;
}
@@ -387,7 +387,7 @@ Concr_parse_tokens(ConcrObject* self, PyObject *args, PyObject *keywds)
len = PySequence_Size(obj);
ExprIterObject* pyres = (ExprIterObject*)
- pgf_ExprType.tp_alloc(&pgf_ExprIterType, 0);
+ pgf_ExprIterType.tp_alloc(&pgf_ExprIterType, 0);
if (pyres == NULL) {
return NULL;
}
@@ -761,7 +761,7 @@ PGF_generate(PGFObject* self, PyObject *args, PyObject *keywds)
return NULL;
ExprIterObject* pyres = (ExprIterObject*)
- pgf_ExprType.tp_alloc(&pgf_ExprIterType, 0);
+ pgf_ExprIterType.tp_alloc(&pgf_ExprIterType, 0);
if (pyres == NULL) {
return NULL;
}