实现单例模式(python)

方法一:重写_new_

class Singleton(object):

    def __new__(cls, *args, **wargs):
        if not hasattr(...