RefactoringRope/JsonServer.py

branch
server_client_variant
changeset 189
2711fdd91925
parent 175
72a1d9030d67
child 192
20950ed6b384
equal deleted inserted replaced
188:05fb0977ce1b 189:2711fdd91925
111 return 111 return
112 112
113 method = clientDict["method"] 113 method = clientDict["method"]
114 params = clientDict["params"] 114 params = clientDict["params"]
115 115
116 # TODO: remove these once done
117 print("Method:", method)
118 print("Params:", params)
119
120 self.handleCall(method, params) 116 self.handleCall(method, params)
121 117
122 def handleCall(self, method, params): 118 def handleCall(self, method, params):
123 """ 119 """
124 Public method to handle a method call from the client. 120 Public method to handle a method call from the client.

eric ide

mercurial