Python:防止模块导入时混合 tabs/spaces

Python: prevent mixed tabs/spaces on module import

我知道您可以通过使用 -tt 调用 Python 来确保纯 tabbed/spaced 代码。但是,当我无法控制顶层调用时,我是否仍然可以在我的脚本加载的模块上强制执行此行为?

如果您可以控制初始脚本,那么您可以自己添加一个检查。例如,除了导入学生的脚本之外,您还可以使用一个函数来首先检查模块是否存在缩进错误,然后 然后 导入它:

# instead of
import foo
foo.bar()

# you have something like
foo = verifyAndImport('foo')
foo.bar()

verifyAndImport 看起来像这样:

import importlib
def verifyAndImport (moduleName):
    with open(moduleName + '.py') as f:
        # TODO: logic to verify consistent indentation

    return importlib.import_module(moduleName)

另一种解决方案是让您的初始脚本在新的 Python 进程中使用 -tt 参数启动 actual 脚本。但正如 tdelaney 指出的那样,这可能会导致不是由您的学生造成的错误。