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