Created
August 16, 2012 18:25
-
-
Save moorepants/3372384 to your computer and use it in GitHub Desktop.
read only 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
class MainClass(object): | |
@property | |
def name(self): | |
if self.__class__ is MainClass: | |
return name | |
else: | |
#dont return, give error or warning | |
raise StandardError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment