提交 ba2727e7 authored 作者: Frederic Bastien's avatar Frederic Bastien

Add comment

上级 dbe755dc
......@@ -48,6 +48,10 @@ if MutableSet is not None:
__slots__ = 'prev', 'next', 'key', '__weakref__'
def __getstate__(self):
# The proxy aren't pickled by default.
# We want to restore them.
# The way we restore the proxy we create more
# proxy, but we do not care.
ret = [self.prev, self.next,
isinstance(self.prev, weakref.ProxyType),
isinstance(self.next, weakref.ProxyType),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论