Created
May 28, 2013 12:09
-
-
Save PierreBdR/5662309 to your computer and use it in GitHub Desktop.
python_property
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@property | |
def ${1:name}(self): | |
""" | |
${2:doc} | |
""" | |
${3:pass} | |
@${1}.setter | |
def ${1}(self, value): | |
${4:pass} | |
@${1}.deleter | |
def ${1}(self): | |
${5:pass} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment