10 lines
No EOL
189 B
Text
10 lines
No EOL
189 B
Text
# contributor: Julio Carlos Menendez <godinblack@gmail.com>
|
|
# name: _get_foo ... foo=property(...)
|
|
# key: propg
|
|
# --
|
|
def _get_${1:foo}(self):
|
|
return self._$1
|
|
|
|
$1 = property(_get_$1)
|
|
|
|
$0 |