descr.py 文件源码

python
阅读 25 收藏 0 点赞 0 评论 0

项目:python 作者: hienha 项目源码 文件源码
def __get__(self, obj, typ=None):
    '__get__() -- retrives attribute from disk'
        self.name = name
        if self.name not in FileDescr.saved:
            raise AttributeError, \
                "%r used before assignment" % self.name

    # open pickle file and load object; choke on failure
        try:
            f = open(self.name, 'r')
            val = pickle.load(f)
            f.close()
            return val
        except (pickle.UnpicklingError, IOError,
                EOFError, AttributeError,
                ImportError, IndexError), e:
            raise AttributeError, \
                "could not read %r: %s" % self.name
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号