pyc 文件独立于解释器架构吗?
根据我所做的测试,使用相同版本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.