aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyext.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-09-21 10:52:33 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-09-21 10:52:33 +0000
commit2b91966061ead3c4aa260033e95cfc4adb396496 (patch)
treecd8b0d9196dd9f49a389427ad56349d22bde2476 /externals/grill/py/source/pyext.h
parent45da6684cbe9bd2fe199b0fd75a40f1c219b6341 (diff)
__str__ method for pyext, to enable print self calls
python-like dotted module.function syntax multiply inlets for py (hot and cold inlets) 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 ASSERTs for explicitly created pyext classes (should be runtime checks i guess) cleaned up float vs. int pyext tags more safety for calls where association python-pd has already been removed open editor for module file on "edit" message (or click) let _inlets and _outlets default to 0 svn path=/trunk/; revision=3610
Diffstat (limited to 'externals/grill/py/source/pyext.h')
-rw-r--r--externals/grill/py/source/pyext.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/externals/grill/py/source/pyext.h b/externals/grill/py/source/pyext.h
index 4a4e79f1..672fe5f1 100644
--- a/externals/grill/py/source/pyext.h
+++ b/externals/grill/py/source/pyext.h
@@ -22,9 +22,7 @@ class pyext
public:
pyext(int argc,const t_atom *argv,bool sig = false);
- static PyObject *pyext__doc__(PyObject *,PyObject *args);
- static PyObject *pyext__init__(PyObject *,PyObject *args);
- static PyObject *pyext__del__(PyObject *,PyObject *args);
+ static PyObject *pyext__str__(PyObject *,PyObject *args);
static PyObject *pyext_outlet(PyObject *,PyObject *args);
#if FLEXT_SYS == FLEXT_SYS_PD