solorice/vscodium/extensions/magicstack.magicpython-1.1.1/snippets/sublime/Try-Except-Else-Finally.sublime-snippet
2022-04-28 21:17:01 +03:00

14 lines
280 B
XML

<snippet>
<content><![CDATA[try:
${1:pass}
except${2: ${3:Exception} as ${4:e}}:
${5:raise}
else:
${6:pass}
finally:
${7:pass}]]></content>
<tabTrigger>try</tabTrigger>
<scope>source.python</scope>
<description>Try/Except/Else/Finally</description>
</snippet>