From c11ecf0fd10641218326ae384e80413ba3cdf46c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 May 2009 17:42:51 +0000 Subject: Remove 'new_patch', 'new_node', and 'new_port' from interface in favour of generic 'put'. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2011 a436a847-0d15-0410-975c-d299462d15a1 --- src/bindings/test_ingen.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/bindings/test_ingen.py') diff --git a/src/bindings/test_ingen.py b/src/bindings/test_ingen.py index 9b925155..c858e7df 100755 --- a/src/bindings/test_ingen.py +++ b/src/bindings/test_ingen.py @@ -15,11 +15,8 @@ class PythonClient(ingen.Client): def bundle_end(self): print "*** }" - def new_port(self, path, data_type, is_output): - print "*** Received Port:", path, data_type, is_output - - def new_node(self, plugin_uri, path, polyphonic, nports): - print "*** Received Node:", plugin_uri, path, polyphonic, nports + def put(self, path, properties): + print "*** Received Object:", path c = PythonClient() c.enable() -- cgit v1.2.1