3

我正在寻找一种在 Python 2.x 中使用importlib 即时重写导入模块的字节码的方法。换句话说,我需要在导入期间在编译和执行步骤之间挂钩我自己的函数。除此之外,我希望导入功能就像内置功能一样工作。

我已经使用imputil做到了这一点,但是该库并未涵盖所有情况,并且无论如何都已弃用。

4

1 回答 1

2

浏览了importlib源代码后,我相信您可以PyLoader_bootstrap模块中进行子类化并覆盖get_code

class PyLoader:
    ...

    def get_code(self, fullname):
    """Get a code object from source."""
    source_path = self.source_path(fullname)
    if source_path is None:
        message = "a source path must exist to load {0}".format(fullname)
        raise ImportError(message)
    source = self.get_data(source_path)
    # Convert to universal newlines.
    line_endings = b'\n'
    for index, c in enumerate(source):
        if c == ord(b'\n'):
            break
        elif c == ord(b'\r'):
            line_endings = b'\r'
            try:
                if source[index+1] == ord(b'\n'):
                    line_endings += b'\n'
            except IndexError:
                pass
            break
    if line_endings != b'\n':
        source = source.replace(line_endings, b'\n')

    # modified here
    code = compile(source, source_path, 'exec', dont_inherit=True)
    return rewrite_code(code)

我假设你知道你在做什么,但代表各地的程序员我相信我应该说:=p

于 2010-09-22T13:03:17.127 回答