In ipython notebook, I can use the following code to stop execution in a cell. How to do it in spylon notebook? `class StopExecution(Exception):` ` def _render_traceback_(self):` ` pass` `raise StopExecution`
In ipython notebook, I can use the following code to stop execution in a cell.
How to do it in spylon notebook?
class StopExecution(Exception):def _render_traceback_(self):passraise StopExecution