python 来自http://code.activestate.com/recipes/65207-constants-in-python/?in=user-97991

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 来自http://code.activestate.com/recipes/65207-constants-in-python/?in=user-97991相关的知识,希望对你有一定的参考价值。

# 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__

以上是关于python 来自http://code.activestate.com/recipes/65207-constants-in-python/?in=user-97991的主要内容,如果未能解决你的问题,请参考以下文章