aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyext.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-09-26 13:59:59 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-09-26 13:59:59 +0000
commit4eb1464e5439332693a92ab76776b06d9b0c8700 (patch)
tree8b64a78801a2d3ac3857ffdc2a35407114565790 /externals/grill/py/source/pyext.cpp
parent0f849641afd27b4e7c9326fbcd402105fd62ced0 (diff)
__str__ method for pyext, to enable print self calls
enable symbol binding for all callables (not only functions and methods) enable optimization of Python code in reease build _isthreaded is now a data member instead of a method compiler flag to exclude DSP objects some cleanups pyext: fix for missing __init__ attribute some optimizations and py reload fix some ASSERTs for explicitly created pyext classes (should be runtime checks i guess) more safety for calls where association python-pd has already been removed fixed typos let _inlets and _outlets default to 0 svn path=/trunk/; revision=3637
Diffstat (limited to 'externals/grill/py/source/pyext.cpp')
-rw-r--r--externals/grill/py/source/pyext.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/externals/grill/py/source/pyext.cpp b/externals/grill/py/source/pyext.cpp
index 633d4007..91be31e0 100644
--- a/externals/grill/py/source/pyext.cpp
+++ b/externals/grill/py/source/pyext.cpp
@@ -259,6 +259,8 @@ bool pyext::DoInit()
}
Py_DECREF(init);
}
+ // __init__ has not been found - don't care
+ PyErr_Clear();
Py_DECREF(pargs);
return ok;