display last 7 services during scan
[enigma2.git] / lib / python / python.cpp
index 5e3ccc8deed0d5f20dce1e45da4db20770dfbde1..f467bc86dc7d1a63a4827e72d38c4e5901a7f715 100644 (file)
@@ -4,6 +4,18 @@
 
 extern "C" void init_enigma();
 
+DEFINE_REF(TestObj);
+
+TestObj::TestObj()
+{
+       eDebug("create %p", this);
+}
+
+TestObj::~TestObj()
+{
+       eDebug("destroy %p", this);
+}
+
 #if 0
 ePyObject::ePyObject(void *ptr): m_object(ptr)
 {
@@ -132,7 +144,6 @@ PyObject *ePython::resolve(const std::string &pythonfile, const std::string &fun
                pFunc = PyDict_GetItemString(pDict, funcname.c_str());
                Py_XINCREF(pFunc);
                Py_DECREF(pModule);
-               eDebug("resolved to %p", pFunc);
                return pFunc;
        } else
        {