aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-10-10 11:42:58 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:18:22 -0300
commit13c40649f9cc6011df5fe460aa6f2bf2c4e59b8e (patch)
tree0bff344a02f4d0274753885801d08787eb6c329d /libshiboken
parentb63fb5b842459170647eba9036fda522ef251b23 (diff)
Removes printfs and fixes str test.
Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/sbkenum.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libshiboken/sbkenum.cpp b/libshiboken/sbkenum.cpp
index 6bfd421cd..0304a1a9e 100644
--- a/libshiboken/sbkenum.cpp
+++ b/libshiboken/sbkenum.cpp
@@ -93,7 +93,6 @@ static PyObject* SbkEnum_tp_new(PyTypeObject* type, PyObject* args, PyObject* kw
static PyObject* enum_int(PyObject* v)
{
- printf("ENUM TO INT\n");
#ifdef IS_PY3K
return PyLong_FromLong(SBK_ENUM(v)->ob_value);
#else
@@ -157,7 +156,6 @@ static int enum_bool(PyObject* v)
static PyObject* enum_add(PyObject* self, PyObject* v)
{
- printf("ENUM ADDDDDDDDD\n");
long valA = SBK_ENUM(self)->ob_value;
long valB = getNumberValue(v);
return PyLong_FromLong(valA + valB);