Files
yasnippet/snippets/text-mode/python-mode/propg
2008-04-25 15:01:39 +00:00

10 lines
186 B
Plaintext

#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