beremiz
Clone
Summary
Browse
Changes
Graph
Fixed runtime problems with python 2.6 without wx installed
2012-05-22, Edouard Tisserant
41a4a560406c
Fixed runtime problems with python 2.6 without wx installed
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