##// END OF EJS Templates
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc...
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc Thanks to Sylvain Corlay for the suggestion.

File last commit:

r17165:34358621
r18058:c7253b21
Show More
Skip Exceptions.ipynb
56 lines | 1.5 KiB | text/plain | TextLexer
In [1]:
raise Exception("message")
---------------------------------------------------------------------------
Exception                                 Traceback (most recent call last)
<ipython-input-1-335814d14fc1> in <module>()
----> 1 raise Exception("message")

Exception: message
In [2]:
print('ok')
ok