Advertisement
Guest User

Untitled

a guest
May 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. In [2]: try:
  2. ...: raise Exception("foo")
  3. ...: except Exception:
  4. ...: raise Exception("bar")
  5. ...: finally:
  6. ...: print "hello"
  7. ...:
  8. hello
  9. ---------------------------------------------------------------------------
  10. Exception Traceback (most recent call last)
  11.  
  12. /home/jason/txt/<ipython console> in <module>()
  13.  
  14. Exception: bar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement