Try:Except 179 B

123456789
  1. # -*- mode: snippet -*-
  2. # This was cloned from a TextMate bundle for yasnippet.
  3. #name : Try:Except
  4. #key : try
  5. # --
  6. try:
  7. ${1:pass}
  8. except${2: Exception${3: as $4}}:
  9. ${5:raise $6}