summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorroot <root@localhost.localdomain>2008-05-27 10:50:09 +0300
committerroot <root@localhost.localdomain>2008-05-27 10:50:09 +0300
commit5ee76c4ff83c18d9dfbcd677a6e9eb5d9c02d254 (patch)
tree0e981a2696b819e2bc37a5f868d1dff191da3d93 /func
parentfd78cbaf22650c3061368684859925f58c005620 (diff)
downloadthird_party-func-5ee76c4ff83c18d9dfbcd677a6e9eb5d9c02d254.tar.gz
third_party-func-5ee76c4ff83c18d9dfbcd677a6e9eb5d9c02d254.tar.xz
third_party-func-5ee76c4ff83c18d9dfbcd677a6e9eb5d9c02d254.zip
im a real git lame :) the creation of the new method for arg gettter
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/func_module.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/func/minion/modules/func_module.py b/func/minion/modules/func_module.py
index 693d808..16f6681 100644
--- a/func/minion/modules/func_module.py
+++ b/func/minion/modules/func_module.py
@@ -79,4 +79,13 @@ class FuncModule(object):
attr != 'register_rpc':
return True
return False
-
+
+ def __get_method_args(self,meth_name):
+ """
+ Gives a list of arguments for particular given
+ method_name
+
+ @param meth_name: the name of the method
+ @retun : list or None
+ """
+ pass