根据python 文档,从 python 2.5 开始就支持相对导入和包内引用。我目前正在运行 Python 2.7.3。因此,我尝试在自己的包中实现这一点,以便将其用于更简单的导入。我惊讶地发现它向我抛出了一个 SyntaxError 异常,我希望有人能帮助解决这个问题。
我设置了一个测试目录进行测试:
tester
├── __init__.py
├── first_level.py
└── sub
├── __init__.py
└── second_level.py
两个 __init__.py 模块都是空的。其他模块是:
# first_level.py
print "This is the first level of the package"
# sub/second_level.py
import ..first_level
print "This is the second level"
当我尝试导入 second_level 模块时,出现以下错误:
Python 2.7.3 (default, Aug 1 2012, 14:42:42)
[GCC 4.2.1 Compatible Apple Clang 4.0 ((tags/Apple/clang-421.0.57))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Welcome!
>>> import tester
>>> import tester.sub.second_level
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "tester/sub/second_level.py", line 1
import ..first_level
^
SyntaxError: invalid syntax
我希望这两行一个接一个地打印,但它引发了一个异常。那么,我是否做错了导入?你还有其它的想法吗。