Skip to content

Instantly share code, notes, and snippets.

@kuoe0
Created August 13, 2013 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuoe0/6220028 to your computer and use it in GitHub Desktop.
Save kuoe0/6220028 to your computer and use it in GitHub Desktop.
# Put in const.py...:
class _const:
class ConstError(TypeError): pass
def __setattr__(self,name,value):
if self.__dict__.has_key(name):
raise self.ConstError, "Can't rebind const(%s)"%name
self.__dict__[name]=value
import sys
sys.modules[__name__]=_const()
# that's all -- now any client-code can
import const
# and bind an attribute ONCE:
const.magic = 23
# but NOT re-bind it:
const.magic = 88 # raises const.ConstError
# you may also want to add the obvious __delattr__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment