RefactoringRope/JsonServer.py

changeset 294
78e4a6823a98
parent 293
dd1c7ed6d880
child 302
2e853e2f2430
equal deleted inserted replaced
293:dd1c7ed6d880 294:78e4a6823a98
241 proc = None 241 proc = None
242 242
243 if idString: 243 if idString:
244 self.__clientProcesses[idString] = proc 244 self.__clientProcesses[idString] = proc
245 # wait until the client has connected (= slow start) 245 # wait until the client has connected (= slow start)
246 while not idString in self.__connections: 246 while idString not in self.__connections:
247 QCoreApplication.processEvents() 247 QCoreApplication.processEvents()
248 else: 248 else:
249 self.__clientProcess = proc 249 self.__clientProcess = proc
250 250
251 return proc is not None 251 return proc is not None

eric ide

mercurial