在 Python 2 中取消 Python 3 中的类

发布于 2024-08-04 04:14:25 字数 397 浏览 6 评论 0原文

如果使用协议 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-08-11 04:14:25

此问题是 Python 问题 3675。这个bug实际上在Python 3.11中得到了修复。

如果我们导入:

from lib2to3.fixes.fix_imports import MAPPING

MAPPING 将 Python 2 名称映射到 Python 3 名称。我们希望这是相反的。

REVERSE_MAPPING={}
for key,val in MAPPING.items():
    REVERSE_MAPPING[val]=key

我们可以重写 Unpickler 并加载,

class Python_3_Unpickler(pickle.Unpickler):
    """Class for pickling objects from Python 3"""
    def find_class(self,module,name):
        if module in REVERSE_MAPPING:
            module=REVERSE_MAPPING[module]
        __import__(module)
        mod = sys.modules[module]
        klass = getattr(mod, name)
        return klass

def loads(str):
    file = pickle.StringIO(str)
    return Python_3_Unpickler(file).load()  

然后我们将其称为“loads”而不是 pickle.loads。

这应该可以解决问题。

This problem is Python issue 3675. This bug is actually fixed in Python 3.11.

If we import:

from lib2to3.fixes.fix_imports import MAPPING

MAPPING maps Python 2 names to Python 3 names. We want this in reverse.

REVERSE_MAPPING={}
for key,val in MAPPING.items():
    REVERSE_MAPPING[val]=key

We can override the Unpickler and loads

class Python_3_Unpickler(pickle.Unpickler):
    """Class for pickling objects from Python 3"""
    def find_class(self,module,name):
        if module in REVERSE_MAPPING:
            module=REVERSE_MAPPING[module]
        __import__(module)
        mod = sys.modules[module]
        klass = getattr(mod, name)
        return klass

def loads(str):
    file = pickle.StringIO(str)
    return Python_3_Unpickler(file).load()  

We then call this loads instead of pickle.loads.

This should solve the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文