在 Python 2 中取消 Python 3 中的类
如果使用协议 2 对 Python 3 类进行 pickle,则它应该可以在 Python 2 中工作,但不幸的是,这会失败,因为某些类的名称已更改。
假设我们有如下调用的代码。
发送方
pickle.dumps(obj,2)
接收方
pickle.loads(atom)
举个具体的例子,如果obj={}
,那么给出的错误是:
导入错误:没有名为内置的模块
这是因为 Python 2 使用 __builtin__
代替。
问题是解决这个问题的最好方法。
If a Python 3 class is pickled using protocol 2, it is supposed to work in Python 2, but unfortunately, this fails because the names of some classes have changed.
Assume we have code called as follows.
Sender
pickle.dumps(obj,2)
Receiver
pickle.loads(atom)
To give a specific case, if obj={}
, then the error given is:
ImportError: No module named builtins
This is because Python 2 uses __builtin__
instead.
The question is the best way to fix this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此问题是 Python 问题 3675。这个bug实际上在Python 3.11中得到了修复。
如果我们导入:
MAPPING 将 Python 2 名称映射到 Python 3 名称。我们希望这是相反的。
我们可以重写 Unpickler 并加载,
然后我们将其称为“loads”而不是 pickle.loads。
这应该可以解决问题。
This problem is Python issue 3675. This bug is actually fixed in Python 3.11.
If we import:
MAPPING maps Python 2 names to Python 3 names. We want this in reverse.
We can override the Unpickler and loads
We then call this loads instead of pickle.loads.
This should solve the problem.