如何将Python 2.5字节码重新编译为2.7?

发布于 2024-12-07 23:41:43 字数 97 浏览 0 评论 0原文

如何使用 Python 2.7 重新编译 Python 2.5 生成的一些 .pyc 文件?

我没有源文件,无法获取它。

我正在寻找免费的解决方案。

How can I recompile some .pyc files made by Python 2.5 with Python 2.7?

I do not have the source files and I cannot obtain it.

I am looking for a free solution.

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

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

发布评论

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

评论(1

梦途 2024-12-14 23:41:43

您需要安装 Python 2.5 和 2.7 以及 byteplay (http://code.google.com/p/byteplay/)。

diz.py:

#!/usr/bin/env python
import byteplay, marshal, sys
if __name__ == '__main__':
    sys.stdin.read(8)
    c = byteplay.Code.from_code(marshal.load(sys.stdin)).code
    labels = set([ x for l in c for x in l if isinstance(x, byteplay.Label) ])
    labels = dict([(l,i) for (i,l) in enumerate(labels)])
    byteplay.Label.__repr__ = lambda self: "labels[%d]" % labels[self]
    print repr(c)

az.py:

#!/usr/bin/env python
import byteplay, sys, imp, struct, marshal, time
if __name__ == '__main__':
    byteplay.labels = dict([(i, byteplay.Label()) for i in xrange(10000)])
    if sys.platform == "win32":
        import os, msvcrt
        msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
    asm = sys.stdin.read()
    c = eval(asm, byteplay.__dict__)
    c = byteplay.Code(c, (), (), 0, 0, 0, '', '', 0, '').to_code()
    sys.stdout.write(imp.get_magic())
    sys.stdout.write(struct.pack('<L', time.time()))
    marshal.dump(c, sys.stdout)

用法:

python2.5 diz.py < foo.pyc > foo.az
python2.7 az.py < foo.az > foo.2.7.pyc

You will need Python 2.5 and 2.7 and byteplay (http://code.google.com/p/byteplay/) installed to both.

diz.py:

#!/usr/bin/env python
import byteplay, marshal, sys
if __name__ == '__main__':
    sys.stdin.read(8)
    c = byteplay.Code.from_code(marshal.load(sys.stdin)).code
    labels = set([ x for l in c for x in l if isinstance(x, byteplay.Label) ])
    labels = dict([(l,i) for (i,l) in enumerate(labels)])
    byteplay.Label.__repr__ = lambda self: "labels[%d]" % labels[self]
    print repr(c)

az.py:

#!/usr/bin/env python
import byteplay, sys, imp, struct, marshal, time
if __name__ == '__main__':
    byteplay.labels = dict([(i, byteplay.Label()) for i in xrange(10000)])
    if sys.platform == "win32":
        import os, msvcrt
        msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
    asm = sys.stdin.read()
    c = eval(asm, byteplay.__dict__)
    c = byteplay.Code(c, (), (), 0, 0, 0, '', '', 0, '').to_code()
    sys.stdout.write(imp.get_magic())
    sys.stdout.write(struct.pack('<L', time.time()))
    marshal.dump(c, sys.stdout)

usage:

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