x> Simple code:
x> class RpcClass:
x> def one(self): #visible by RPC, available as public for other class
x> return "one"
x> def two(self): #INVISIBLE by RPC, available as public for other
x> class
x> return "two"
x> Server.register_instance(Rpc
Hi
I'm working recently with XMLRPC for python and It never was so easy.
But I've meet a obstacle. Because python is not giving us any
reasonable encapsulation mechanism, I have problems with hiding some
part of the implementation.
When class has 2 methods and I want to make rpc private only ON