def _run_nowait(self, code):
''' TODO: change to no wait '''
print self._proc.poll()
encoded_code = json.dumps({'command': code, 'nowait': True})
output = subprocess.check_output([self._bootstrap, 'run', '--nowait', encoded_code], env=self._env)
return output
评论列表
文章目录