pyc 文件独立于解释器架构吗?

发布于 2024-09-25 13:11:42 字数 114 浏览 4 评论 0原文

根据我所做的测试,使用相同版本的 python(相同的幻数),64 位解释器可以加载使用 32 位版本的 python 生成的 pyc 文件。我也这么认为。

但这是完全安全的吗?这会导致意外行为吗?

From the tests I've done, with the same version of python (same magic number), a 64 bit interpreter can load pyc files made with a 32 bit version of python. And reciprocally I assume.

But is it totally safe? Can this lead to unexpected behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

弥繁 2024-10-02 13:11:42

pyc 文件以 python marshal 格式存储。

http://daeken.com/python-marshal-format

似乎唯一的问题是当您在 32 位机器上读取 pyc 时,编码的整数会自动降级为 32 位整数。

然而 pyc 格式不包含 64 位地址/偏移量,因此相同的 pyc 应该在 64 位和 32 位解释器上运行。

pyc files are stored in the python marshal format.

http://daeken.com/python-marshal-format

it seems that the only issue is with encoded integers which are automatically downgraded to 32 bit integers when you read the pyc on a 32 bit machine.

However the pyc format doesn't include 64bit addresses/offset inside it so the same pyc should run on both 64bit and 32bit interpreters.

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