beremiz
Clone
Summary
Browse
Changes
Graph
Moved trace buffer unpacking in the IDE. Latest traced variable samples are now passed as a single string
2015-01-30, Edouard Tisserant
4a45f6642523
Moved trace buffer unpacking in the IDE. Latest traced variable samples are now passed as a single string
from pyjs.jsonrpc import JSONRPCServiceBase
class JSONRPCService(JSONRPCServiceBase):
def serve(self):
return self.process(request.body.read())
def __call__(self,func):
self.methods[func.__name__]=func
return func