You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show stderr and stdout interspersed approximately the way they would be on a Unix console. With colors. (Right now all the stderr is printed after all the stdout.)
Keep the same two stringIO instances for the entire time a notebook is open (right now there's only one notebook open). (Currently it creates a new pair every time you hit the Run button). Make sure that if you
fromsysimportstdout, stderr
in one block, you can
print>>stdout, "out"print>>stderr, "err"
and get the correct results. Will it work if you re-import stdout and stderr?
The text was updated successfully, but these errors were encountered:
in one block, you can
and get the correct results. Will it work if you re-import stdout and stderr?
The text was updated successfully, but these errors were encountered: