2

这是我需要腌制的课程:

class sdict(dict):
    def __getattr__(self, attr):
        return self.get(attr, None)
    __setattr__= dict.__setitem__
    __delattr__= dict.__delitem__
    __reduce__ = dict.__reduce__

在我看来,__reduce__应该注意酸洗,而是:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
/home/daniyar/work/Apr24/<ipython-input-28-1cc94b920737> in <module>()
----> 1 pickle.dumps(sdict(a=1))

/usr/lib/python2.6/pickle.pyc in dumps(obj, protocol)
   1364 def dumps(obj, protocol=None):
   1365     file = StringIO()
-> 1366     Pickler(file, protocol).dump(obj)
   1367     return file.getvalue()
   1368 

/usr/lib/python2.6/pickle.pyc in dump(self, obj)
    222         if self.proto >= 2:
    223             self.write(PROTO + chr(self.proto))
--> 224         self.save(obj)
    225         self.write(STOP)
    226 

/usr/lib/python2.6/pickle.pyc in save(self, obj)
    304             reduce = getattr(obj, "__reduce_ex__", None)
    305             if reduce:
--> 306                 rv = reduce(self.proto)
    307             else:
    308                 reduce = getattr(obj, "__reduce__", None)

/usr/lib/python2.6/copy_reg.pyc in _reduce_ex(self, proto)
     82             dict = None
     83     else:
---> 84         dict = getstate()
     85     if dict:
     86         return _reconstructor, args, dict

TypeError: 'NoneType' object is not callable

ERROR: An unexpected error occurred while tokenizing input
The following traceback may be corrupted or invalid
The error message is: ('EOF in multi-line statement', (171, 0))

我也应该定义__getstate__吗?我完全迷失了所有这些可用于自定义酸洗的多种方法: __getinitargs__、、、__getstate__等等__reduce__……

谷歌只向我推荐我发现非常不清楚的官方泡菜文档。有人可以为我澄清一下或指出一个好的泡菜教程吗?

4

1 回答 1

5

我怀疑你是否走上了一条好的道路。

但是,要解决泡菜问题:

class sdict(dict):
    def __getattr__(self, attr):
        if attr.startswith('__'):
            raise AttributeError
        return self.get(attr, None)
    __setattr__= dict.__setitem__
    __delattr__= dict.__delitem__

Pickle 试图从你的对象中获取状态,而 dict 没有实现它。__getattr__正在调用您"__getstate__"以找到该魔术方法,并返回 None 而不是AttributeError应有的提升。如果你修复你的__getattr__,pickle 可以正常工作。

事实上,你为什么要为缺少的属性返回 None 呢?这真的是你想要你的对象做的吗?

这是您尝试伪造内置函数的困难的一个示例。幕后发生了一些微妙的事情,你将不得不参与其中。

PS:一个相同的问题

于 2012-04-28T15:04:11.443 回答