aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyargs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/py/source/pyargs.cpp')
-rw-r--r--externals/grill/py/source/pyargs.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/externals/grill/py/source/pyargs.cpp b/externals/grill/py/source/pyargs.cpp
index 1b549160..aee12a17 100644
--- a/externals/grill/py/source/pyargs.cpp
+++ b/externals/grill/py/source/pyargs.cpp
@@ -51,8 +51,10 @@ PyObject *py::MakePyArgs(const t_symbol *s,int argc,const t_atom *argv,int inlet
int ix;
PyObject *tmp;
- if(!withself || argc < (any?1:2)) tmp = pArgs,ix = pix;
- else tmp = PyTuple_New(argc+(any?1:0)),ix = 0;
+// if(!withself || argc < (any?1:2))
+ tmp = pArgs,ix = pix;
+// else
+// tmp = PyTuple_New(argc+(any?1:0)),ix = 0;
if(any)
PyTuple_SET_ITEM(tmp, ix++, pySymbol_FromSymbol(s));