aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyext.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-04-07 15:03:53 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-04-07 15:03:53 +0000
commit8a0ff7683227964f6aad09e1be750ce9b3821243 (patch)
treeed7c886881c5a59da18eabb920e84c2ea2d39b33 /externals/grill/py/source/pyext.cpp
parent69dbb48d5aecd79db7de86b57b502490b4d4ada8 (diff)
cleaner error reporting
added generic numpy support (not working) use lock count instead of message queuing to avoid py->py messaging deadlock fixing strange gcc behavior fixes for maxmsp support for buffer objects (preliminary) fixed reference count bug use optimized version adjust pd and py files for correct argument passing more optimizations little restructuring svn path=/trunk/; revision=2687
Diffstat (limited to 'externals/grill/py/source/pyext.cpp')
-rw-r--r--externals/grill/py/source/pyext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/py/source/pyext.cpp b/externals/grill/py/source/pyext.cpp
index 7d234956..2fd0ee22 100644
--- a/externals/grill/py/source/pyext.cpp
+++ b/externals/grill/py/source/pyext.cpp
@@ -414,7 +414,7 @@ void pyext::m_get(const t_symbol *s)
PyObject *pvar = PyObject_GetAttrString(pyobj,const_cast<char *>(GetString(s))); /* fetch bound method */
if(pvar) {
- AtomListStatic<16> lst;
+ flext::AtomListStatic<16> lst;
if(GetPyArgs(lst,pvar,1)) {
// dump value to attribute outlet
SetSymbol(lst[0],s);