mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: try
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Try/Except/Else/Finally
|
|
# --
|
|
try:
|
|
${1:pass}
|
|
except${2: ${3:Exception}, ${4:e}}:
|
|
${5:raise}
|
|
else:
|
|
${6:pass}
|
|
finally:
|
|
${7:pass} |