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