diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/snippets/text-mode/python-mode/propg | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs.d/snippets/text-mode/python-mode/propg b/emacs.d/snippets/text-mode/python-mode/propg new file mode 100644 index 0000000..7e994b6 --- /dev/null +++ b/emacs.d/snippets/text-mode/python-mode/propg @@ -0,0 +1,9 @@ +#contributor : Julio Carlos Menendez <godinblack@gmail.com>
+#name : _get_foo ... foo=property(...)
+# --
+def _get_${1:foo}(self):
+ return self._$1
+
+$1 = property(_get_$1)
+
+$0
|