python:导入函数在3.5中不起作用

时间:2018-02-19 22:36:10

标签: python python-2.7 python-3.5 python-importlib imp

我使用它来导入2.7中的函数:

def import_x():
    import os
    import imp
    directory = os.path.dirname(os.path.realpath(__file__))
    os.environ['__PYTHON_SYS_PATH_FOR_TESTFOLDER__'] = directory
    fp, pathname, description = imp.find_module('test', [ directory ])
    if fp is not None:
        try:
            x = imp.load_module('test', fp, os.path.realpath(pathname), description)
        finally:
            fp.close()
        return x

test = import_x()

但我很难在3.5中完成这项工作。好吗?

1 个答案:

答案 0 :(得分:0)

请改为尝试:

import sys
directory = os.path.dirname(os.path.abspath(sys.argv[0]))

我不确定具体的变化,但这似乎有效。