在搁置模块中看到一个奇怪的异常(以及搁置助手 copy_reg 模块)。看一看,它试图调用对 Pickler 类的 __getstate__ 方法的引用。但是,由于某种原因,这似乎返回了 None 。只是想知道是否有其他人经历过这种情况,以及是否可以采取一些措施来让搁架正常工作?
这是我看到的异常的返回堆栈:
File "/usr/local/lib/python2.7/dist-packages/libgsync/drive/__init__.py", line 497, in stat
self._pcache[search] = ent
File "/usr/lib/python2.7/shelve.py", line 132, in __setitem__
p.dump(value)
File "/usr/lib/python2.7/copy_reg.py", line 84, in _reduce_ex
dict = getstate()
DEBUG: libgsync/drive/__init__.py:387:walk(): Exception: 'NoneType' object is not callable
我冒昧地查看了代码,这就是它在 _reduce_ex() 函数中出现故障的地方:
try:
getstate = self.__getstate__
except AttributeError:
if getattr(self, "__slots__", None):
raise TypeError("a class that defines __slots__ without "
"defining __getstate__ cannot be pickled")
try:
dict = self.__dict__
except AttributeError:
dict = None
else:
dict = getstate()
最初,它将 self.__getstate__ 分配给 getstat,因此此时应该可以调用它。它似乎没有引发异常,因为它是在 else 块的上下文中执行的。奇怪的...
这是发生异常的代码行的调试输出:
DEBUG: libgsync/drive/__init__.py:496:stat(): Updating path cache: /unittest
这是导致异常的代码:
# Update path cache.
if self._pcache.get(search) is None:
debug("Updating path cache: %s" % search)
self._pcache[search] = ent