We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab41f9b commit be8ac96Copy full SHA for be8ac96
matlab_kernel/kernel.py
@@ -253,7 +253,7 @@ def _execute_async(self, code):
253
try:
254
with pipes(stdout=_PseudoStream(partial(self.Print, end="")),
255
stderr=_PseudoStream(partial(self.Error, end=""))):
256
- kwargs = { 'nargout': 0, 'async': True }
+ kwargs = { 'nargout': 0, 'background': True }
257
future = self._matlab.eval(code, **kwargs)
258
future.result()
259
except (SyntaxError, MatlabExecutionError, KeyboardInterrupt) as exc:
0 commit comments