pyc_file.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:femtocode 作者: diana-hep 项目源码 文件源码
def extract(binary):
    '''
    Extract a code object from a binary pyc file.

    :param binary: a sequence of bytes from a pyc file.
    '''
    if len(binary) <= 8:
        raise Exception("Binary pyc must be greater than 8 bytes (got %i)" % len(binary))

    magic = binary[:4]
    MAGIC = get_magic()

    if magic != MAGIC:
        raise Exception("Python version mismatch (%r != %r) Is this a pyc file?" % (magic, MAGIC))

    modtime = time.asctime(time.localtime(struct.unpack('i', binary[4:8])[0]))

    code = marshal.loads(binary[8:])

    return modtime, code
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号