plot_directive.py 文件源码

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

项目:scipy-lecture-notes-zh-CN 作者: jayleicn 项目源码 文件源码
def runfile(fullpath):
    """
    Import a Python module from a path.
    """
    # Change the working directory to the directory of the example, so
    # it can get at its data files, if any.
    pwd = os.getcwd()
    path, fname = os.path.split(fullpath)
    sys.path.insert(0, os.path.abspath(path))
    stdout = sys.stdout
    sys.stdout = cStringIO.StringIO()
    os.chdir(path)
    try:
        fd = open(fname)
        module = imp.load_module("__main__", fd, fname, ('py', 'r', imp.PY_SOURCE))
    finally:
        del sys.path[0]
        os.chdir(pwd)
        sys.stdout = stdout
    return module
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号