aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-10-15 19:01:58 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:07:21 -0300
commitc1ef5a79d14b598e7b0027be2922b23a78e57c02 (patch)
treefacae7f75e2a8d086fde9dc708ab0d2df5997cc5 /libshiboken
parent894d7c725bc103919d38a6a491852e8cfc255d7d (diff)
Fixed namespace lookup during the class generation.
fixes bug #414. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/basewrapper.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index 7f7b8da8b..2c1129b2d 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -576,7 +576,11 @@ void setErrorAboutWrongArguments(PyObject* args, const char* funcName, const cha
for (int i = 0, max = PyTuple_GET_SIZE(args); i < max; ++i) {
if (i)
params += ", ";
- params += PyTuple_GET_ITEM(args, i)->ob_type->tp_name;
+ PyObject* arg = PyTuple_GET_ITEM(args, i);
+ if (PyCObject_Check(arg))
+ params += "pointer";
+ else
+ params += arg->ob_type->tp_name;
}
} else {
params = args->ob_type->tp_name;