On Sat, Mar 12, 2011 at 9:11 PM, Thomas Grill gr@grrrr.org wrote:
self._send(rcvname) currently sends an empty list message to the rcvname receiver which is often interpreted but need not always be
the correct way would be self._send(rcvname,"bang",()) which is equivalent to a message with selector bang and no further arguments (empty tuple)
since the former notation self._send(rcvname) is also used with pyext outlets as self._outlet(outletnum) to send a bang, i corrected the behavior in the py/pyext SVN to indeed send a bang. However, this is not yet reflected in the binaries in circulation
hi Thomas,
latest svn and self._send(rcvname) does not work with [nbx] but self._send(rcvname, "bang", ()) does the trick and solves the [nbx] issue at the same time =)
thanks ! _y