Try-Except-Finally.sublime-snippet (244B)
1 <snippet> 2 <content><![CDATA[try: 3 ${1:pass} 4 except ${2:Exception} as ${3:e}: 5 ${4:raise $3} 6 finally: 7 ${5:pass}]]></content> 8 <tabTrigger>try</tabTrigger> 9 <scope>source.python</scope> 10 <description>Try/Except/Finally</description> 11 </snippet>