aboutsummaryrefslogtreecommitdiffstats
path: root/src/py/imc/proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/py/imc/proxy.py')
-rwxr-xr-xsrc/py/imc/proxy.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/py/imc/proxy.py b/src/py/imc/proxy.py
index 8f750c0..da4bfd4 100755
--- a/src/py/imc/proxy.py
+++ b/src/py/imc/proxy.py
@@ -621,12 +621,3 @@ class Proxy:
def _abort_sendfile(self,filekey):
if filekey in self._info_filekeymap:
self._ioloop.add_callback(self._ret_sendfile,filekey,'Eabort')
-
-def imc_call(dst,func_name,*args):
- return Proxy.instance.call(dst,func_name,65536,*args)
-
-def imc_call_async(dst,func_name,callback,*args):
- Proxy.instance.call_async(dst,func_name,65536,callback,*args)
-
-def imc_register_call(path,func_name,func):
- Proxy.instance.register_call(path,func_name,func)