##// END OF EJS Templates
Merge pull request #6045 from minrk/nbformat4...
Merge pull request #6045 from minrk/nbformat4 nbformat v4

File last commit:

r18590:be819bae
r18617:482c7bd6 merge
Show More
Skip Exceptions.ipynb
50 lines | 1.3 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