重寫 dict get() 方法

class Local(dict): def get(self, key): try: return dict(self[key]) except KeyError: raise exceptions.ResourceError("no such user") local = Local()
相關文章
相關標籤/搜索