restored yasnippet

This commit is contained in:
Bozhidar Batsov 2012-02-17 22:12:32 +02:00
parent ac01f235cc
commit 103dbcd8d0
573 changed files with 71124 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# contributor: Julio Carlos Menendez <godinblack@gmail.com>
# name: _get_foo ... _set_foo ... foo=property(...)
# key: propsg
# --
def _set_${1:foo}(self, value):
self._$1 = value
def _get_$1(self):
return self._$1
$1 = property(_get_$1, _set_$1)
$0