##// END OF EJS Templates
Don’t use ZeroDivisionError in tests...
Don’t use ZeroDivisionError in tests it’s not consistent across Python versions

File last commit:

r17093:0bf9f092
r17093:0bf9f092
Show More
Skip Exceptions.ipynb
54 lines | 1.4 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