reverse-merged the python-mode snippet directory, will forward merge the trunk again

This commit is contained in:
capitaomorte
2009-07-22 10:38:44 +00:00
parent 408413a811
commit 519c3514d2
3 changed files with 38 additions and 34 deletions

View File

@@ -1,15 +0,0 @@
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# name: prop
# --
def ${1:foo}():
doc = """${2:Doc string}"""
def fget(self):
return self._$1
def fset(self, value):
self._$1 = value
def fdel(self):
del self._$1
return locals()
$1 = property(**$1())
$0