set svn:eol-style to LF in all files

This commit is contained in:
capitaomorte
2010-03-15 21:58:33 +00:00
parent f3ff02272c
commit c9d7153f4a
54 changed files with 262 additions and 262 deletions

View File

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