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 13d76fb commit 954619cCopy full SHA for 954619c
matlab_kernel/kernel.py
@@ -249,8 +249,8 @@ def do_shutdown(self, restart):
249
250
def _execute_async(self, code):
251
try:
252
- with pipes(stdout=_PseudoStream(partial(self.Print, sep="", end="")),
253
- stderr=_PseudoStream(partial(self.Error, sep="", end=""))):
+ with pipes(stdout=_PseudoStream(partial(self.Print, end="")),
+ stderr=_PseudoStream(partial(self.Error, end=""))):
254
kwargs = { 'nargout': 0, 'async': True }
255
future = self._matlab.eval(code, **kwargs)
256
future.result()
0 commit comments