Python导入问题

时间:2011-08-13 21:00:48

标签: python

我有一个自定义包,我遇到了导入问题。模块结构如下:

- BaseModule
    - Exchange
    - Communications
        - DeviceComm

我正在尝试将Exchange模块导入DeviceComm模块。我该怎么做?

1 个答案:

答案 0 :(得分:1)

使用Intra-package references

from .. import Exchange