summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/python-mode/mpropg
blob: eb60b49f09f20bb01c87a6a801b6ad6a3ce40184 (plain)
1
2
3
4
5
6
7
8
9
10
11
#contributor : Simeon Simeonov <blackmore@pichove.org>
#name : @property foo ... getter
#expand-env: ((yas/indent-line 'fixed) (yas/wrap-around-region 'nil))
# --
@property
def ${1:foo}(self):
	"""
	"""
    return self._$1

$0