什么是保留的Python模块/包名?

时间:2016-03-17 16:21:42

标签: python unit-testing python-3.x

使用Python unittest时出现了一个奇怪的错误。我的项目中有两个文件夹:

project
    code
        __init__.py        (empty)
        app.py             (defines my App class)
    test
        test.py            (contains my unit tests)

test.py是:

import os, sys, unittest
sys.path.insert(1, os.path.join(sys.path[0],'..'))
from code.app import App

class test_func1(unittest.TestCase):
    ...

当我运行test.py时,我收到消息:

Traceback (most recent call last):
    File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "...test.py, line 5, in <module>
    from code.app import App
ImportError: No module named 'code.app': 'code' is not a package

在验证__init__.py存在并且敲了一会儿之后,我一时兴起将app目录的名称从代码更改为prog:

import os, sys, unittest
sys.path.insert(1, os.path.join(sys.path[0],'..'))
from prog.app import App

......一切都很好。 Unittest正确导入我的应用程序并运行测试。

我搜索了https://docs.python.org/3.5/reference/lexical_analysis.html#keywordshttps://docs.python.org/3/reference/import.html#path-entry-finders,但没有看到code是非法目录名称的任何迹象。在哪里记录,以及保留其他目录名称?

系统:win32,Windows 7上的python 3.4.3 [MSC v1600 32位]

1 个答案:

答案 0 :(得分:2)

code未保留,但 已在标准库中定义,其中它是常规模块而非包。要从包中导入,您应该使用相对导入。

from .code.app import App