Try:Except:Else:Finally 226 B

12345678910111213
  1. # -*- mode: snippet -*-
  2. # This was cloned from a TextMate bundle for yasnippet.
  3. #name : Try:Except:Else:Finally
  4. #key : try
  5. # --
  6. try:
  7. ${1:pass}
  8. except${2: Exception${3: as $4}}:
  9. ${5:raise}
  10. else:
  11. ${6:pass}
  12. finally:
  13. ${7:pass}