aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pybase.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-08-03 16:33:37 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-08-03 16:33:37 +0000
commitba20eb3d9b596cd5017249b839aaa75957cea59d (patch)
tree8892ad43aee1aad446cf0ea17993494e4a0b5003 /externals/grill/py/source/pybase.h
parent255202b3f9cae747f07af74b2715f70bcc946939 (diff)
added message bundle functionality (pyext.Bundle class)
enable compiled-only scripts (without .py) small optimizations and fixes small changes for numpy support enable module packages (module/__init__.py[co]), now also for Max compiler flag to exclude DSP objects some ASSERTs for explicitly created pyext classes (should be runtime checks i guess) added pyext._list and pyext._tuple to convert input lists to Python sequence objects let _inlets and _outlets default to 0 svn path=/trunk/; revision=5472
Diffstat (limited to 'externals/grill/py/source/pybase.h')
-rw-r--r--externals/grill/py/source/pybase.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/externals/grill/py/source/pybase.h b/externals/grill/py/source/pybase.h
index 6b661268..b5cc8220 100644
--- a/externals/grill/py/source/pybase.h
+++ b/externals/grill/py/source/pybase.h
@@ -119,11 +119,8 @@ protected:
static PyObject *py_setvalue(PyObject *,PyObject *args);
#endif
-#ifdef PY_NUMARRAY
- static void setupNumarray();
- static PyObject *py_import(PyObject *,PyObject *args);
- static PyObject *py_export(PyObject *,PyObject *args);
-#endif
+ static PyObject *py_list(PyObject *,PyObject *args);
+ static PyObject *py_tuple(PyObject *,PyObject *args);
// ----thread stuff ------------